Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.47 KB

Rule19-26.md

File metadata and controls

36 lines (27 loc) · 2.47 KB

Airside Systems – Rule 19-26

Schema Version: 0.0.24
Mandatory Rule: True
Rule ID: 19-26
Rule Description: HVAC fans shall remain on during unoccupied hours in spaces that have health and safety mandated minimum ventilation requirements during unoccupied hours in the proposed design.
Rule Assertion: Options are Pass/Fail/NOT_APPLICABLE
Appendix G Section: Section G3.1-4 Schedules exception #2 for the proposed building and Section G3.1.2.4 Appendix G Section Reference: None
Data Lookup: None

Evaluation Context: Evaluate each HeatingVentilationAirAconditioningSystem

Applicability Checks:

  1. Applies to all HVAC systems that serve zones that have health and safety mandated minimum ventilation requirements during unoccupied hours.

Function Call:

  1. get_hvac_systems_serving_zone_health_safety_vent_reqs()

Manual Check: None

Rule Logic: Applicability Check 1:

  • Get list of hvac systems that are likely to serve zones that have health and safety mandated minimum ventilation requirements during unoccupied hours: applicable_hvac_systems_list_p = get_hvac_systems_serving_zone_health_safety_vent_reqs(P_RMI)
  • For each hvac_p in applicable_hvac_systems_list_p (all other hvac systems in the P_RMI outcome is NOT_APPLICABLE): for each hvac_p in applicable_hvac_systems_list_p:
    • Get fan operation during unoccupied periods: operation_during_unoccupied_p = hvac_p.fan_system.operation_during_unoccupied
    • Get minimum_outdoor_airflow: minimum_outdoor_airflow_p = hvac_p.fan_system.minimum_outdoor_airflow
      Rule Assertion:
    • Case 1: For each applicable hvac system, if fan system operation during unoccupied periods is continuous in the P_RMI and min OA cfm is greater than 0 then outcome is pass: if operation_during_unoccupied_p == “CONTINUOUS” and minimum_outdoor_airflow_p > 0: PASS
    • Case 2: Else, for each applicable hvac system fan system,:Else: FAIL and raise_message "<insert hvac_p.id> SERVES ZONE(S) THAT APPEAR LIKELY TO HAVE HEALTH AND SAFETY MANDATED MINIMUM VENTILATION REQUIREMENTS DURING UNOCCUPIED HOURS AND THEREFORE (IF THE HVAC SYSTEM SUPPLIES OA CFM) MAY WARRANT CONTINUOUS OPERATION DURING UNOCCUPIED HOURS PER SECTION G3.1-4 SCHEDULES EXCEPTION #2 FOR THE PROPOSED BUILDING AND PER SECTION G3.1.2.4."

Notes/Questions:

  1. Updated the Rule ID from 19-29 to 19-26 on 04/17/2023

Back