From a76f85784c6a7d41460898ce4af5851749a597a9 Mon Sep 17 00:00:00 2001 From: KarenWGard <114143532+KarenWGard@users.noreply.github.com> Date: Tue, 1 Oct 2024 18:29:07 -0400 Subject: [PATCH] Create Rule5-42.md --- docs/section5/Rule5-42.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 docs/section5/Rule5-42.md diff --git a/docs/section5/Rule5-42.md b/docs/section5/Rule5-42.md new file mode 100644 index 0000000000..062a69d88c --- /dev/null +++ b/docs/section5/Rule5-42.md @@ -0,0 +1,35 @@ +# Envelope - Rule 5-42 +**Schema Version:** 0.0.37 +**Mandatory Rule:** False +**Rule ID:** 5-42 + +**Rule Description:** Each linear thermal bridge and point thermal bridge as identified in Section 5.5.5 shall be modeled using either of the following techniques: + +a. A separate model of the assembly within the energy simulation model. +b. Adjustment of the clear-field U-factor in accordance with Section A10.2. + +**Rule Assertion:** B-RMR = expected value +**Appendix G Section:** Table G3.1 Section 5(a)-1 Proposed +**Appendix G Section Reference:** 5(a) +**Data Lookup:** None +**Evaluation Context:** Evaluate each Project + +**Applicability Checks:** + +1. A project has an exterior wall + +**Function Call:** + +**Manual Check:** Ensure that linear and point thermal bridges, as identified in Section 5.5.5 are modeled using either of the following techniques: +a. A separate model of the assembly within the energy simulation model. +b. Adjustment of the clear-field U-factor in accordance with Section A10.2. + +**Rule Logic:** +**Applicability:** +- look at each zone in the RMD: `for zone in P_RMD....zones:` + - look at each surface in the zone: `for surface in zone.surfaces:` + - if the surface is an exterior surface, then this rule is applicable for the entire project: `if((surface.adjacent_to == "EXTERIOR") or (surface.adjacent_to == "GROUND")): UNDETERMINED` +- if the rule logic gets here without an UNDETERMINED outcome, then the project is not applicable: `NOT_APPLICABLE` + + + **[Back](../_toc.md)**