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:
- B-RMR is modeled with at least one air-side system that is Type-11.
Function Calls:
- get_baseline_system_types()
- 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: