From 9153fbf25fd2f0ef745a5ca73984f2885a6efc4c Mon Sep 17 00:00:00 2001 From: KarenWGard <114143532+KarenWGard@users.noreply.github.com> Date: Wed, 25 Sep 2024 14:50:02 -0400 Subject: [PATCH] Update Rule6-4.md --- docs/section6/Rule6-4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/section6/Rule6-4.md b/docs/section6/Rule6-4.md index ba9876734..9b7ea23ab 100644 --- a/docs/section6/Rule6-4.md +++ b/docs/section6/Rule6-4.md @@ -38,7 +38,7 @@ - Get total lighting power density in space, EXCLUDING retail display lighting located in Sales Area space types: `total_space_LPD_b = 0` - Look at each lighting object in the space: `for interior_lighting in space_b.interior_lighting:` - create a boolean is_part_of_total and set it to true: `is_part_of_total = TRUE` - - check whether the space type is one of the retail space types: `if space.lighting_space_type == "SALES AREA":` + - check whether the space type is one of the retail space types: `if space_b.lighting_space_type == "SALES AREA":` - check whether this specific interior_lighting object is Retail display. If it is, set is_part_of_total to FALSE: `if interior_lighting.purpose_type == "RETAIL_DISPLAY": is_part_of_total = FALSE` - Add the LPD of this interior_lighting if it is not retail display lighting located in a retail space: `if is_part_of_total: total_space_LPD_b += interior_lighting.power_per_area`