From 4bcb1b42b1b27288066412aef3d918405184be9f Mon Sep 17 00:00:00 2001 From: Mikkel Pedersen Date: Tue, 3 Dec 2024 16:54:40 +0100 Subject: [PATCH] fix(folder): Add condition that checks if static is the only light path --- honeybee_radiance_folder/folder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/honeybee_radiance_folder/folder.py b/honeybee_radiance_folder/folder.py index ca78217..87d5ac6 100644 --- a/honeybee_radiance_folder/folder.py +++ b/honeybee_radiance_folder/folder.py @@ -829,7 +829,7 @@ def _update_dict(dict, key, value): else: # else added to three phase _update_dict(three_phase_dict, elem, grid) - elif not exclude_static: + elif not exclude_static and len(light_path) == 1: # static apertures _update_dict(two_phase_dict, '__static_apertures__', grid) if not light_paths: