Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.28 KB

Rule23-12.md

File metadata and controls

33 lines (22 loc) · 1.28 KB

Airside System - Rule 23-12

Schema Version: 0.0.34
Mandatory Rule: FALSE
Rule ID: 23-12
Rule Description: System 11 in heating mode supply air temperature shall be modulated to maintain space temp and airflow shall be fixed at minimum airflow.
Rule Assertion: B-RMR = expected value
Appendix G Section: Section 23 Air-side
90.1 Section Reference: G3.1.3.17 System 11 Supply Air Temperature and Fan Control
Data Lookup: None
Evaluation Context: Building

Applicability Checks:

  1. B-RMR is modeled with at least one air-side system that is Type-11.

Function Calls:

  1. get_baseline_system_types()
  2. baseline_system_type_compare()

Applicability Checks:

  • create a list of the target system types: APPLICABLE_SYS_TYPES = [HVAC_SYS.SYS_11]

  • Get B-RMR system types: baseline_hvac_system_dict = get_baseline_system_types(B-RMR)

    • Check if B-RMR is modeled with at least one air-side system that is Type-11, rule is applicable: if any(baseline_system_type_compare(system_type, target_sys_type, false) for system_type in baseline_system_types_dict.keys() for applicable_sys_type in APPLICABLE_SYS_TYPES): UNDETERMINED

    • Else, rule is not applicable to B-RMR: else: RULE_NOT_APPLICABLE

Notes:

Back