Skip to content

Commit

Permalink
Fix for section 19-7 Failing because of of a missing "not" in front o…
Browse files Browse the repository at this point in the history
…f std_equal. Should send this message if the OA CFMs are not equal.
  • Loading branch information
gonz102 committed Nov 19, 2024
1 parent abf8f8a commit 830e953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rct229/rulesets/ashrae9012019/section19/section19rule7.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def get_fail_msg(self, context, calc_vals=None, data=None):
# Case 9
Fail_msg = f"For {hvac_id_b} the modeled baseline minimum ventilation system outdoor air intake flow CFM is higher than the minimum ventilation system outdoor air intake flow CFM modeled in the proposed design which does not meet the requirements of Section G3.1.2.5."

elif std_equal(
elif not std_equal(
modeled_baseline_total_zone_min_OA_CFM,
modeled_proposed_total_zone_min_OA_CFM,
):
Expand Down

0 comments on commit 830e953

Please sign in to comment.