honeybee-grasshopper-radiance 1.35.5__py3-none-any.whl → 1.36.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,52 @@
1
+ # Honeybee: A Plugin for Environmental Analysis (GPL)
2
+ # This file is part of Honeybee.
3
+ #
4
+ # Copyright (c) 2025, Ladybug Tools.
5
+ # You should have received a copy of the GNU Affero General Public License
6
+ # along with Honeybee; If not, see <http://www.gnu.org/licenses/>.
7
+ #
8
+ # @license AGPL-3.0-or-later <https://spdx.org/licenses/AGPL-3.0-or-later>
9
+
10
+ """
11
+ Add Radiance Luminaires to a Honeybee Model.
12
+ _
13
+ This assignment is necessary for any Radiance study, though whether a grid or a
14
+ view is required for a particular type of study is depenednet upon the recipe
15
+ used.
16
+ _
17
+ Multiple copies of this component can be used in series and each will add the
18
+ luminaires to any that already exist.
19
+
20
+ -
21
+ Args:
22
+ _model: A Honeybee Model to which the input _luminaires will be assigned.
23
+ _luminaires: A list of Honeybee-Radiance Luminaires, which will be assigned to
24
+ the input _model.
25
+
26
+ Returns:
27
+ model: The input Honeybee Model with the luminaires assigned to it.
28
+ """
29
+
30
+ ghenv.Component.Name = 'HB Assign Luminaires'
31
+ ghenv.Component.NickName = 'AssignLuminaires'
32
+ ghenv.Component.Message = '1.9.0'
33
+ ghenv.Component.Category = 'HB-Radiance'
34
+ ghenv.Component.SubCategory = '0 :: Basic Properties'
35
+ ghenv.Component.AdditionalHelpFromDocStrings = '6'
36
+
37
+ try: # import core honeybee dependencies
38
+ from honeybee.model import Model
39
+ except ImportError as e:
40
+ raise ImportError('\nFailed to import honeybee:\n\t{}'.format(e))
41
+
42
+ try: # import ladybug_rhino dependencies
43
+ from ladybug_rhino.grasshopper import all_required_inputs
44
+ except ImportError as e:
45
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
46
+
47
+
48
+ if all_required_inputs(ghenv.Component):
49
+ assert isinstance(_model, Model), \
50
+ 'Expected Honeybee Model. Got {}.'.format(type(_model))
51
+ model = _model.duplicate() # duplicate to avoid editing the input
52
+ model.properties.radiance.add_luminaires(_luminaires)
@@ -0,0 +1,133 @@
1
+ # Honeybee: A Plugin for Environmental Analysis (GPL)
2
+ # This file is part of Honeybee.
3
+ #
4
+ # Copyright (c) 2025, Ladybug Tools.
5
+ # You should have received a copy of the GNU Affero General Public License
6
+ # along with Honeybee; If not, see <http://www.gnu.org/licenses/>.
7
+ #
8
+ # @license AGPL-3.0-or-later <https://spdx.org/licenses/AGPL-3.0-or-later>
9
+
10
+ """
11
+ Create a Honeybee CustomLamp.
12
+ _
13
+ The CustomLamp can be used to set custom chromaticity, color or color temperature.
14
+ If only the _name is set a default CustomLamp of 3200K is created, unless the name
15
+ is a predefined lamp name.
16
+ -
17
+ The priority of input is from the top. This means that if, e.g., both color_temp_
18
+ and xy_cor_ are set by the user, the color temperature have priority and the CustomLamp
19
+ will be created from the color temperature.
20
+
21
+ -
22
+ Args:
23
+ _name: Set the name of the custom lamp. If the name is among the predefined
24
+ list of lamp names, the lamp name will override any values in the other
25
+ inputs.
26
+ _
27
+ The following lamp names are predefined. The values in parenthesis are
28
+ the x, y 1931 chromaticity coordinates and lumen depreciation values:
29
+ clear metal halide (0.396, 0.39, 0.8)
30
+ cool white (0.376, 0.368, 0.85)
31
+ cool white deluxe (0.376, 0.368, 0.85)
32
+ deluxe cool white (0.376, 0.368, 0.85)
33
+ deluxe warm white (0.44, 0.403, 0.85)
34
+ fluorescent (0.376, 0.368, 0.85)
35
+ halogen (0.4234, 0.399, 1)
36
+ incandescent (0.453, 0.405, 0.95)
37
+ mercury (0.373, 0.415, 0.8)
38
+ metal halide (0.396, 0.39, 0.8)
39
+ quartz (0.424, 0.399, 1)
40
+ sodium (0.569, 0.421, 0.93)
41
+ warm white (0.44, 0.403, 0.85)
42
+ warm white deluxe (0.44, 0.403, 0.85)
43
+ xenon (0.324, 0.324, 1)
44
+ color_temp_: Set the color temperature in Kelvin for the lamp. This is used to
45
+ calculate the chromaticity coordinates on the CIE 1931 xy diagram. Valid
46
+ color temperature values are from 1000 to 25000. Will be ignored if the
47
+ lamp name matches a predefined value.
48
+ xy_cor_: Chromaticity coordinates for the lamp. This input must be a list
49
+ of two values [x, y]. Will be ignored if color_temp_ is supplied. Or if
50
+ the lamp name matches a predefined value.
51
+ _color_space_: Color space for the chromaticity coordinates. The values and
52
+ their corresponding color spaces are
53
+ 0 - CIE 1931 Color Space (default)
54
+ 1 - CIE 1960 Color Space
55
+ 2 - CIE 1976 Color Space
56
+ rgb_color_: Specifiy the RGB color for the lamp. This can be a color from the
57
+ "Colour Swatch" component or a text panel. Any alpha value of the color
58
+ will be multiplied with the depreciation factor. Will be ignored if
59
+ color_temp_ or xy_cor_ are supplied. Or if the lamp name matches a
60
+ predefined value.
61
+ _depr_fac_: A scalar multiplier applied to account for lamp lumen
62
+ depreciation. Must be greater than 0. Default: 1.
63
+
64
+ Returns:
65
+ report: Reports, errors, warnings, etc.
66
+ custom_lamp: A CustomLamp that can be plugged into a Luminaire.
67
+ """
68
+
69
+ ghenv.Component.Name = 'HB Custom Lamp'
70
+ ghenv.Component.NickName = 'CustomLamp'
71
+ ghenv.Component.Message = '1.9.0'
72
+ ghenv.Component.Category = 'HB-Radiance'
73
+ ghenv.Component.SubCategory = '2 :: Light Sources'
74
+ ghenv.Component.AdditionalHelpFromDocStrings = '4'
75
+
76
+ try:
77
+ from honeybee_radiance.luminaire import Luminaire, LuminaireZone, CustomLamp, LAMPNAMES
78
+ except ImportError as e:
79
+ raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
80
+
81
+ try: # import ladybug_rhino dependencies
82
+ from ladybug_rhino.grasshopper import all_required_inputs
83
+ except ImportError as e:
84
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
85
+
86
+
87
+ if all_required_inputs(ghenv.Component):
88
+ # set defaults
89
+ color_temp = color_temp_ or None
90
+ x_cor, y_cor = xy_cor_ or (None, None)
91
+ color_space = 0 if _color_space_ is None else _color_space_
92
+ rgb_color = rgb_color_ or None
93
+ depr_factor = 1 if _depr_fac_ is None else _depr_fac_
94
+
95
+ # record inputs set by user; used for printing message
96
+ inputs = {'_color_temp_': color_temp_, '_xy_cor_': xy_cor_, '_color_space_': _color_space_, '_rgb_color_': rgb_color_, '_depr_fac_': _depr_fac_}
97
+ user_inputs = {k for k in inputs if inputs[k]}
98
+
99
+ if _name in LAMPNAMES:
100
+ custom_lamp = CustomLamp.from_lamp_name(_name, depreciation_factor=depr_factor)
101
+ print('Custom lamp is a predefined lamp named "{}" with x, y chromaticity coordianes and depreciation factor: {}.'.format(_name, LAMPNAMES[_name]))
102
+ if user_inputs:
103
+ print('The input for _name will override the following inputs: {}.'.format(', '.join(user_inputs)))
104
+ elif color_temp:
105
+ custom_lamp = CustomLamp.from_color_temperature(_name, color_temp, depreciation_factor=depr_factor)
106
+ print('Custom lamp will be defined as per the color temperature of: {}.'.format(color_temp))
107
+ user_inputs.remove('_color_temp_')
108
+ user_inputs.remove('_depr_fac_') if '_depr_fac_' in user_inputs else None
109
+ if user_inputs:
110
+ print('The input for _color_temp_ will override the following inputs: {}.'.format(', '.join(user_inputs)))
111
+ elif x_cor and y_cor:
112
+ custom_lamp = CustomLamp.from_xy_coordinates(_name, x_cor, y_cor, depreciation_factor=depr_factor, color_space=color_space)
113
+ x, y, year = 'x', 'y', 1931
114
+ if color_space == 1:
115
+ x, y, year = 'u', 'v', 1960
116
+ elif color_space == 2:
117
+ x, y, year = "u'", "v'", 1976
118
+ print('Custom lamp will be defined as per the following chromaticity coordinates : ({}, {}) = ({}, {}) for the {} CIE Color Space.'.format(x, y, x_cor, y_cor , year))
119
+ user_inputs.remove('_xy_cor_')
120
+ user_inputs.remove('_color_space_') if '_color_space_' in user_inputs else None
121
+ user_inputs.remove('_depr_fac_') if '_depr_fac_' in user_inputs else None
122
+ if user_inputs:
123
+ print('The input for _xy_cor_ will override the following inputs: {}.'.format(', '.join(user_inputs)))
124
+ elif rgb_color:
125
+ custom_lamp = CustomLamp.from_rgb_colors(_name, rgb_color, depreciation_factor=depr_factor)
126
+ print('Custom lamp will be defined as per the RGB color: {}.'.format(rgb_color))
127
+ user_inputs.remove('_rgb_color_')
128
+ user_inputs.remove('_depr_fac_') if '_depr_fac_' in user_inputs else None
129
+ if user_inputs:
130
+ print('The input for _rgb_color_ will override the following inputs: {}.'.format(', '.join(user_inputs)))
131
+ else:
132
+ custom_lamp = CustomLamp.from_default_white(_name, depreciation_factor=depr_factor)
133
+ print('Custom lamp is a default lamp with color temperature of 3200K.')
@@ -0,0 +1,50 @@
1
+ # Honeybee: A Plugin for Environmental Analysis (GPL)
2
+ # This file is part of Honeybee.
3
+ #
4
+ # Copyright (c) 2025, Ladybug Tools.
5
+ # You should have received a copy of the GNU Affero General Public License
6
+ # along with Honeybee; If not, see <http://www.gnu.org/licenses/>.
7
+ #
8
+ # @license AGPL-3.0-or-later <https://spdx.org/licenses/AGPL-3.0-or-later>
9
+
10
+ """
11
+ Get Radiance Luminaires from a Honeybee Model.
12
+ -
13
+ Args:
14
+ _model: A Honeybee Model for which luminaires will be output.
15
+
16
+ Returns:
17
+ luminaires: A list of Honeybee-Radiance Luminaires that are assigned to the
18
+ input _model.
19
+ """
20
+
21
+ ghenv.Component.Name = 'HB Get Luminaires'
22
+ ghenv.Component.NickName = 'GetLuminaires'
23
+ ghenv.Component.Message = '1.9.0'
24
+ ghenv.Component.Category = 'HB-Radiance'
25
+ ghenv.Component.SubCategory = '0 :: Basic Properties'
26
+ ghenv.Component.AdditionalHelpFromDocStrings = '6'
27
+
28
+ try: # import core honeybee dependencies
29
+ from honeybee.model import Model
30
+ except ImportError as e:
31
+ raise ImportError('\nFailed to import honeybee:\n\t{}'.format(e))
32
+
33
+ try: # import honeybee_radiance dependencies
34
+ from honeybee_radiance.writer import _filter_by_pattern
35
+ except ImportError as e:
36
+ raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
37
+
38
+ try: # import ladybug_rhino dependencies
39
+ from ladybug_rhino.grasshopper import all_required_inputs
40
+ except ImportError as e:
41
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
42
+
43
+
44
+ if all_required_inputs(ghenv.Component):
45
+ assert isinstance(_model, Model), \
46
+ 'Expected Honeybee Model. Got {}.'.format(type(_model))
47
+ # get the honeybee-radiance objects
48
+ luminaires = _model.properties.radiance.luminaires
49
+ if luminaire_filter_ is not None:
50
+ luminaires = _filter_by_pattern(luminaires, luminaire_filter_)
@@ -0,0 +1,81 @@
1
+ # Honeybee: A Plugin for Environmental Analysis (GPL)
2
+ # This file is part of Honeybee.
3
+ #
4
+ # Copyright (c) 2025, Ladybug Tools.
5
+ # You should have received a copy of the GNU Affero General Public License
6
+ # along with Honeybee; If not, see <http://www.gnu.org/licenses/>.
7
+ #
8
+ # @license AGPL-3.0-or-later <https://spdx.org/licenses/AGPL-3.0-or-later>
9
+
10
+ """
11
+ Create a Honeybee LuminaireZone of LuminaireInstances.
12
+ _
13
+ It is recommended to apply the rotation in the following order: spin, tilt, rotation.
14
+ If an aiming point is added it will override any spin, tilt, and rotation values.
15
+ -
16
+ Args:
17
+ _points: A point or list of points that will be used to position the luminaires.
18
+ _spin_: Rotation about the local vertical axis (degrees), This axis is
19
+ also called the G0 axis. Default: 0.
20
+ _tilt_: Tilt angle around the Y axis (degrees). Default: 0.
21
+ _rotation_: Rotation angle around the Z axis (degrees). Default: 0.
22
+ aiming_point: A point representing the location at which the photometric
23
+ axis of the luminaires should be aimed. This can also be a list of
24
+ points that matches the length of _points.
25
+
26
+ Returns:
27
+ report: Reports, errors, warnings, etc.
28
+ luminaire_zone: A LuminaireZone that can be plugged into a Luminaire.
29
+ """
30
+
31
+ ghenv.Component.Name = 'HB Luminaire Zone'
32
+ ghenv.Component.NickName = 'LuminaireZone'
33
+ ghenv.Component.Message = '1.9.0'
34
+ ghenv.Component.Category = 'HB-Radiance'
35
+ ghenv.Component.SubCategory = '2 :: Light Sources'
36
+ ghenv.Component.AdditionalHelpFromDocStrings = '4'
37
+
38
+ try:
39
+ from ladybug_rhino.togeometry import to_point3d
40
+ from ladybug_rhino.grasshopper import all_required_inputs
41
+ except ImportError as e:
42
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
43
+
44
+ try:
45
+ from honeybee_radiance.luminaire import LuminaireZone, LuminaireInstance
46
+ except ImportError as e:
47
+ raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
48
+
49
+ try: # import ladybug_rhino dependencies
50
+ from ladybug_rhino.grasshopper import all_required_inputs
51
+ except ImportError as e:
52
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
53
+
54
+
55
+ if all_required_inputs(ghenv.Component):
56
+ # set defaults
57
+ points = [to_point3d(pt) for pt in _points]
58
+ _spin = [0]*len(points) if not _spin_ else _spin_
59
+ _tilt = [0]*len(points) if not _tilt_ else _tilt_
60
+ _rotation = [0]*len(points) if not _rotation_ else _rotation_
61
+ _aiming_point = aiming_point_ or None
62
+
63
+ if _aiming_point:
64
+ if len(_aiming_point) == 1: # all instances point to same aiming point
65
+ _aiming_point = _aiming_point * len(points)
66
+
67
+ lum_instances = []
68
+ for idx, point in enumerate(points):
69
+ spin = _spin[idx]
70
+ tilt = _tilt[idx]
71
+ rotation = _rotation[idx]
72
+
73
+ if _aiming_point:
74
+ aiming_point = _aiming_point[idx]
75
+ lum_instance = LuminaireInstance.from_aiming_point(point, aiming_point, spin=spin, tilt=tilt, rotation=rotation)
76
+ else:
77
+ lum_instance = LuminaireInstance(point, spin, tilt, rotation)
78
+
79
+ lum_instances.append(lum_instance)
80
+
81
+ luminaire_zone = LuminaireZone(lum_instances)
@@ -0,0 +1,71 @@
1
+ # Honeybee: A Plugin for Environmental Analysis (GPL)
2
+ # This file is part of Honeybee.
3
+ #
4
+ # Copyright (c) 2025, Ladybug Tools.
5
+ # You should have received a copy of the GNU Affero General Public License
6
+ # along with Honeybee; If not, see <http://www.gnu.org/licenses/>.
7
+ #
8
+ # @license AGPL-3.0-or-later <https://spdx.org/licenses/AGPL-3.0-or-later>
9
+
10
+ """
11
+ Create a Honeybee Luminaire.
12
+ _
13
+ The Luminaire object stores the photometric data of a light fixture and
14
+ provides methods to:
15
+ - Parse IES LM-63 photometric data
16
+ - Generate Radiance geometry via ies2rad
17
+ - Generate photometric web geometry
18
+ - Place and orient luminaire instances in space via a LuminaireZone
19
+ _
20
+ The Luminaire must be added to the Honeybee Model. The translation through ies2rad
21
+ happens in the recipe.
22
+ -
23
+ Args:
24
+ _ies: Path to an IES LM-63 photometric file or a string of the file contents.
25
+ _name_: Optional name of the luminaire. If None the IES file is used as
26
+ the luminaire name. If the Honeybee Model includes multiple luminaires,
27
+ each luminaire must have an unique name.
28
+ _luminaire_zone: A Honeybee LuminaireZone. The LuminaireZone specifices
29
+ the location and rotation of the luminaire instances.
30
+ custom_lamp_: A Honeybee CustomLamp. This can be used to specify custom
31
+ chromaticity, color or color temperature.
32
+ _loss_fac_: A scalar multiplier applied to account for lamp lumen
33
+ depreciation, dirt depreciation, or other system losses. Must be
34
+ greater than 0 (default: 1).
35
+ _cand_mult_: Additional scalar multiplier applied to candela values
36
+ after parsing the IES file. Must be greater than 0 (default: 1).
37
+
38
+ Returns:
39
+ report: Reports, errors, warnings, etc.
40
+ luminaire: A Honeybee Luminaire that can be used in a recipe.
41
+ """
42
+
43
+ ghenv.Component.Name = 'HB Luminaire'
44
+ ghenv.Component.NickName = 'Luminaire'
45
+ ghenv.Component.Message = '1.9.0'
46
+ ghenv.Component.Category = 'HB-Radiance'
47
+ ghenv.Component.SubCategory = '2 :: Light Sources'
48
+ ghenv.Component.AdditionalHelpFromDocStrings = '4'
49
+
50
+ try:
51
+ from honeybee_radiance.luminaire import Luminaire, LuminaireZone
52
+ except ImportError as e:
53
+ raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
54
+
55
+ try: # import ladybug_rhino dependencies
56
+ from ladybug_rhino.grasshopper import all_required_inputs
57
+ except ImportError as e:
58
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
59
+
60
+
61
+ if all_required_inputs(ghenv.Component):
62
+ # set defaults
63
+ name = _name_ or None
64
+ light_loss_factor = 1 if _loss_fac_ is None else _loss_fac_
65
+ candela_multiplier = 1 if _cand_mult_ is None else _cand_mult_
66
+ custom_lamp = custom_lamp_ or None
67
+
68
+ # create luminaire
69
+ luminaire = Luminaire(
70
+ _ies, identifier=name, luminaire_zone=_luminaire_zone, custom_lamp=custom_lamp,
71
+ light_loss_factor=light_loss_factor,candela_multiplier=candela_multiplier)
@@ -0,0 +1,53 @@
1
+ # Honeybee: A Plugin for Environmental Analysis (GPL)
2
+ # This file is part of Honeybee.
3
+ #
4
+ # Copyright (c) 2025, Ladybug Tools.
5
+ # You should have received a copy of the GNU Affero General Public License
6
+ # along with Honeybee; If not, see <http://www.gnu.org/licenses/>.
7
+ #
8
+ # @license AGPL-3.0-or-later <https://spdx.org/licenses/AGPL-3.0-or-later>
9
+
10
+ """
11
+ Visualize a Luminaire.
12
+ _
13
+ This is useful to check if the the spin, tilt, and rotation is applied correctly.
14
+
15
+ -
16
+ Args:
17
+ _luminaire: A Honeybee Luminaire.
18
+ _scale_: A scalar value to scale the geometry. By default the geometry
19
+ is normalized to Rhino model units as a base scale. The scalar value
20
+ is multiplied with this base scale.
21
+
22
+ Returns:
23
+ report: Reports, errors, warnings, etc.
24
+ lum_poly: Geometric representation of the luminous opening.
25
+ lum_web: Geometric representation of the candela distribution of the luminaire.
26
+ lum_axes: Line representation of the C0-G0 axes of the luminaire.
27
+ """
28
+
29
+ ghenv.Component.Name = 'HB Visualize Luminaire'
30
+ ghenv.Component.NickName = 'VizLuminaire'
31
+ ghenv.Component.Message = '1.9.0'
32
+ ghenv.Component.Category = 'HB-Radiance'
33
+ ghenv.Component.SubCategory = '2 :: Light Sources'
34
+ ghenv.Component.AdditionalHelpFromDocStrings = '4'
35
+
36
+ try:
37
+ from ladybug_rhino.config import conversion_to_meters
38
+ from ladybug_rhino.fromobjects import luminaire_objects
39
+ from ladybug_rhino.grasshopper import all_required_inputs, list_to_data_tree, \
40
+ give_warning
41
+ except ImportError as e:
42
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
43
+
44
+
45
+ if all_required_inputs(ghenv.Component):
46
+ base_scale = 1 / conversion_to_meters()
47
+ scale = base_scale if _scale_ is None else base_scale * _scale_
48
+
49
+ luminaire_web, luminaire_poly, luminaire_axes = luminaire_objects(_luminaire, scale)
50
+
51
+ lum_web = list_to_data_tree(luminaire_web)
52
+ lum_poly = list_to_data_tree(luminaire_poly)
53
+ lum_axes = list_to_data_tree(luminaire_axes)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: honeybee-grasshopper-radiance
3
- Version: 1.35.5
3
+ Version: 1.36.0
4
4
  Summary: Honeybee Radiance plugin for Grasshopper.
5
5
  Home-page: https://github.com/ladybug-tools/honeybee-grasshopper-radiance
6
6
  Author: Ladybug Tools
@@ -17,6 +17,7 @@ honeybee_grasshopper_radiance/src/HB Apply ModifierSet.py,sha256=rlFhjekZGR1yM7D
17
17
  honeybee_grasshopper_radiance/src/HB Apply Shade Modifier.py,sha256=YmUw7vTkWGfMfJ_Je-Do9_GcpkhxYQp5Z6mT-lntNgY,4727
18
18
  honeybee_grasshopper_radiance/src/HB Apply Window Modifier.py,sha256=aM3Y7EicvIRg2z92cb5Gk5j2stgHlDsOYuVAmqG2KSE,5246
19
19
  honeybee_grasshopper_radiance/src/HB Assign Grids and Views.py,sha256=orN401ly3D9-ztAeZ8ae3MwLh_sH8i6g-39MXeJYXuU,2159
20
+ honeybee_grasshopper_radiance/src/HB Assign Luminaires.py,sha256=5VF3NmPuecNFZjD_M6dwkpoffE_n8kwQETK1lGEa9ig,1915
20
21
  honeybee_grasshopper_radiance/src/HB Automatic Aperture Group.py,sha256=BrQLGb4MxpeRuwgWfV71IcWl7jORAbWppc5utGLY410,4734
21
22
  honeybee_grasshopper_radiance/src/HB BSDF Modifier.py,sha256=mYgkZueDLWr7DH7-KUrTso7UyB2P8SVZj92tgeTVqU4,3211
22
23
  honeybee_grasshopper_radiance/src/HB CIE Standard Sky.py,sha256=P-Jh6MYfopmB55EBBSsou_KBfpmDFg_u6Sy77KgqopA,2845
@@ -24,6 +25,7 @@ honeybee_grasshopper_radiance/src/HB Certain Illuminance.py,sha256=Da1r6JBHtOyAb
24
25
  honeybee_grasshopper_radiance/src/HB Check Scene.py,sha256=zZCsWUVjfzneqMdsjD7QYOv8vBu0gKGuekw0H9eHiX0,9188
25
26
  honeybee_grasshopper_radiance/src/HB Climatebased Sky.py,sha256=mtBZ6BTv_holUcVDJKXrtDt65YHxZqxTVSHVtLzN3Ik,2838
26
27
  honeybee_grasshopper_radiance/src/HB Cumulative Radiation.py,sha256=co60vegFaNrMqttwULM3EwrEorBz_JGa0fOi82XhcYw,4954
28
+ honeybee_grasshopper_radiance/src/HB Custom Lamp.py,sha256=v5CjM7RnV0--8vqriAtRxeIDAghBzK4lRMvvNEUrFUs,7111
27
29
  honeybee_grasshopper_radiance/src/HB Custom Sky.py,sha256=3XWJ1eoC6GnxMj_PkthBOouFhHxZPYXKywQEByojyrg,2866
28
30
  honeybee_grasshopper_radiance/src/HB Daylight Control Schedule.py,sha256=ZxMPB9l71mVh_Ae6aUp_mYIlkcDNOyopWyVlgfAN1U0,10196
29
31
  honeybee_grasshopper_radiance/src/HB Daylight Factor.py,sha256=svl0mrYUeeAg0PXLeUYsze_ajsFtZXEifwVe5U3ag1w,3636
@@ -41,12 +43,15 @@ honeybee_grasshopper_radiance/src/HB Extract HDR.py,sha256=7-DrUYHF5szeex32VM7ce
41
43
  honeybee_grasshopper_radiance/src/HB False Color.py,sha256=qwuHFovSOnnTUZDDt8YrYWXjutMc85JhyFUcgyYceo8,10148
42
44
  honeybee_grasshopper_radiance/src/HB Get Dynamic Groups.py,sha256=lyu5ywOLox2Zk6ykMzHjBT2_nab9XEGshzpT6q-fV0g,2191
43
45
  honeybee_grasshopper_radiance/src/HB Get Grids and Views.py,sha256=BD-c2jznMQ2uRDNB6oa7r2VQTUiQ4tNYLfUyiCtGBQ4,3501
46
+ honeybee_grasshopper_radiance/src/HB Get Luminaires.py,sha256=1Pc4P5y_QS-Z06TUx79s7Xn_JaDb1FgUxg02SgteyQM,1817
44
47
  honeybee_grasshopper_radiance/src/HB Glare Postprocess.py,sha256=RP4CJliFB5c0j-c0ODiff5ke9yYF1hlOhNXbXMezdrY,10101
45
48
  honeybee_grasshopper_radiance/src/HB Glass Modifier 3.py,sha256=dg9iVqX4vVWGQ7HmO9KSUc8mKExWkaAvS0ALOwreJEA,2447
46
49
  honeybee_grasshopper_radiance/src/HB Glass Modifier.py,sha256=T3Ji5cVgTyljMY8VQQ5hvS4-jZY4TMQNsJqQqLwjtwo,2244
47
50
  honeybee_grasshopper_radiance/src/HB HDR to GIF.py,sha256=pdtGsDEb5L9UYZJ3VWDp11qiO0T1Vk0Ou49LjHgxmP4,2490
48
51
  honeybee_grasshopper_radiance/src/HB Imageless Annual Glare.py,sha256=XYeAod6F_a68gNsOqYU6kghw6W4s7N8fcjw1T0NA8tY,5699
49
52
  honeybee_grasshopper_radiance/src/HB Interior Modifier Subset.py,sha256=vZAqeeJsUO9FP6j1fpjU2O8v7aVt0qoVgl5XnlyCveM,3465
53
+ honeybee_grasshopper_radiance/src/HB Luminaire Zone.py,sha256=nLhWqnMo2AJrTmhqLXSoiKXOcc7V8wsKOQ6F4eOn19c,3213
54
+ honeybee_grasshopper_radiance/src/HB Luminaire.py,sha256=OZVgACO2X7_tAF7ujD_0O4jZQaX8moNC42weRi5kH2E,2975
50
55
  honeybee_grasshopper_radiance/src/HB Metal Modifier 3.py,sha256=S59Tzp9bc-sKIXo3yTT2xvkR8qNV8KgQ75EDG2k_Iws,3074
51
56
  honeybee_grasshopper_radiance/src/HB Metal Modifier.py,sha256=BaGyK14frU4Bf-c13mQklmzXZe86UbBEh1vRF89tK6I,2845
52
57
  honeybee_grasshopper_radiance/src/HB Mirror Modifier 3.py,sha256=kLVxghPEoqcfAdrkgLdeFrbUW5UIjMjNRGKv03TJ7lg,2077
@@ -75,6 +80,7 @@ honeybee_grasshopper_radiance/src/HB Translucent Modifier 3.py,sha256=XR-dTuNmv6
75
80
  honeybee_grasshopper_radiance/src/HB Translucent Modifier.py,sha256=Sq3PTHjaYXKTlJvrrq9b-HI5cirrVW-jnuWDITVNSyU,3389
76
81
  honeybee_grasshopper_radiance/src/HB View from Viewport.py,sha256=dOkZnXzpAzdbwGJOt5xdToiZTYyGL1XuQe47awVI6-8,3423
77
82
  honeybee_grasshopper_radiance/src/HB View.py,sha256=DzhoXVGdW-AEVfG8d0yS-oBRKrkY66JZWWYCGiDIq3g,4108
83
+ honeybee_grasshopper_radiance/src/HB Visualize Luminaire.py,sha256=xRl3qMYhmPvjMCRmNeRlJAm32fdONPAwohZhSPn2Cg4,2015
78
84
  honeybee_grasshopper_radiance/src/HB Visualize Sky.py,sha256=an9NEfYSyULo7ImRfhxnWt4YxTHql_nJcfJgIKbK7po,5692
79
85
  honeybee_grasshopper_radiance/src/HB Wea From Clear Sky.py,sha256=tkFAk1iBRvY7h6ALo96moaxNRLF6_KILWoixZUC02aE,2747
80
86
  honeybee_grasshopper_radiance/src/HB Wea From EPW.py,sha256=LBuu58gb50vuJb3PV9J5qSJNxNDLz1qX6bnpbSbo658,1853
@@ -99,6 +105,7 @@ honeybee_grasshopper_radiance/user_objects/HB Apply ModifierSet.ghuser,sha256=h6
99
105
  honeybee_grasshopper_radiance/user_objects/HB Apply Shade Modifier.ghuser,sha256=W8yohdExaWTnr8_C0VhdTwK_W3MKXI0445TGnT3bf0k,4837
100
106
  honeybee_grasshopper_radiance/user_objects/HB Apply Window Modifier.ghuser,sha256=kljM7xdftrAJpBeoCedWOR7FiK9hsCip4UXx-EhWb_8,5149
101
107
  honeybee_grasshopper_radiance/user_objects/HB Assign Grids and Views.ghuser,sha256=9dgIbZvj-AaEtk3CmpK9urH2I_qu9vFyGEdzGHWnGaY,4916
108
+ honeybee_grasshopper_radiance/user_objects/HB Assign Luminaires.ghuser,sha256=AqjAs4jqXBBw0n9QKV0r8V2BPTescGKGnHrws7DrqTI,4674
102
109
  honeybee_grasshopper_radiance/user_objects/HB Automatic Aperture Group.ghuser,sha256=6ix7NL_fmLdNOHH0oD9lHHtTH5il1EmxnQ1nh-FZQIg,6191
103
110
  honeybee_grasshopper_radiance/user_objects/HB BSDF Modifier.ghuser,sha256=46H-G1F1FDI05YMYtvD6EOjMs5tQmi50SISR7r1xFAo,5257
104
111
  honeybee_grasshopper_radiance/user_objects/HB CIE Standard Sky.ghuser,sha256=CS_r9U-j9UNhx5BpWnmMK0CqLvw06hc-ogl-4292kT8,5352
@@ -106,6 +113,7 @@ honeybee_grasshopper_radiance/user_objects/HB Certain Illuminance.ghuser,sha256=
106
113
  honeybee_grasshopper_radiance/user_objects/HB Check Scene.ghuser,sha256=-NaaPRI7Lb9EK76fsOccSmBcimBzJh1ssNgbZskkEPU,7106
107
114
  honeybee_grasshopper_radiance/user_objects/HB Climatebased Sky.ghuser,sha256=0LwG6Go0Hv10PwtRPLfw0KQZuB4nHylyPJ_VIvfXITs,4824
108
115
  honeybee_grasshopper_radiance/user_objects/HB Cumulative Radiation.ghuser,sha256=jLJs4NGD_2-lUmUhtYeRMW1hxZKG7D3mRV2oJKxBLeE,6254
116
+ honeybee_grasshopper_radiance/user_objects/HB Custom Lamp.ghuser,sha256=_etKX7C9CSBpLwF6o_d69cM-KSlbY7A1GQesC3WfaO4,5961
109
117
  honeybee_grasshopper_radiance/user_objects/HB Custom Sky.ghuser,sha256=k4GS_-McHDTTmjbxc1K87QnKHouXr4ZmQ2Cq5K_WvYQ,5380
110
118
  honeybee_grasshopper_radiance/user_objects/HB Daylight Control Schedule.ghuser,sha256=bzUmxi2MOhoFdQAacN02jwKcfx5pQ19jTiT_KRDE_98,7414
111
119
  honeybee_grasshopper_radiance/user_objects/HB Daylight Factor.ghuser,sha256=knatFkcHC0hAL5M4XZwy1kCLahKFdrYjtBHht_G7ivU,5510
@@ -124,12 +132,15 @@ honeybee_grasshopper_radiance/user_objects/HB Face Radiance Attributes.ghuser,sh
124
132
  honeybee_grasshopper_radiance/user_objects/HB False Color.ghuser,sha256=Nqz72VISUDbpcEPv5sbK9OXbgECD9vzjRldmqPkqCUg,9461
125
133
  honeybee_grasshopper_radiance/user_objects/HB Get Dynamic Groups.ghuser,sha256=Et_Dr3PP5RiRGfrrUgbTsHEgSrGSphzCiZ7n2SrhmzY,4752
126
134
  honeybee_grasshopper_radiance/user_objects/HB Get Grids and Views.ghuser,sha256=eK7dP7xvNzEzA1yyQXi-aUwugU-iyPSrFkuuQtkaOFo,5453
135
+ honeybee_grasshopper_radiance/user_objects/HB Get Luminaires.ghuser,sha256=lOwcWrclSFCKoxH3j4JxNqwmqt9VKLuMiHs8CWico98,4546
127
136
  honeybee_grasshopper_radiance/user_objects/HB Glare Postprocess.ghuser,sha256=5hPJ1BUX-2mbWT1OU7dGL_nqO9MQpAieAUIEpTGIQMU,7093
128
137
  honeybee_grasshopper_radiance/user_objects/HB Glass Modifier 3.ghuser,sha256=UwytypGF4F2qthnCLTCGtbxJTUWtGrqd74RA7Js2NtM,4730
129
138
  honeybee_grasshopper_radiance/user_objects/HB Glass Modifier.ghuser,sha256=yJKk0Ez_3kMgWS2hXvHtddyhTi0XUhEBi0qEMyZx5xc,4104
130
139
  honeybee_grasshopper_radiance/user_objects/HB HDR to GIF.ghuser,sha256=TiTKrEBucVk2iBA89UEFvFz25ml_QLNw6ytEYuwHad4,6413
131
140
  honeybee_grasshopper_radiance/user_objects/HB Imageless Annual Glare.ghuser,sha256=TzlT0llpgtWojoRGQwBt5VIWKuXDFTv-lYrX3nW2HyM,7174
132
141
  honeybee_grasshopper_radiance/user_objects/HB Interior Modifier Subset.ghuser,sha256=g7S5F3bRviH-DXbB8yoerZBiaxxPg87NxFALn0TcFAo,4206
142
+ honeybee_grasshopper_radiance/user_objects/HB Luminaire Zone.ghuser,sha256=AaGwCLg2YOISDsabLGJl-gZbrspYmmD5Taw1ALi3M6E,4791
143
+ honeybee_grasshopper_radiance/user_objects/HB Luminaire.ghuser,sha256=v1pq-JB13q1wU--Oy7IDUxzJhJvmnugvX7uIk8fL5kw,4986
133
144
  honeybee_grasshopper_radiance/user_objects/HB Metal Modifier 3.ghuser,sha256=ftJH5ek_syV3wGYPGZSz1B6_KiAW454Z9EQU_8e_t7U,5300
134
145
  honeybee_grasshopper_radiance/user_objects/HB Metal Modifier.ghuser,sha256=yE3z40xVfYbYtVgMW5g1597VhUyiVHQsJaOSNSn2aWg,4868
135
146
  honeybee_grasshopper_radiance/user_objects/HB Mirror Modifier 3.ghuser,sha256=QL7_Kffy_4AUpUWyYOyEH5xSmcB-pIhmXyae3oUytzA,4611
@@ -159,14 +170,15 @@ honeybee_grasshopper_radiance/user_objects/HB Translucent Modifier 3.ghuser,sha2
159
170
  honeybee_grasshopper_radiance/user_objects/HB Translucent Modifier.ghuser,sha256=TMgFn8NMjq6LkLDKzoUA5W4CCk2LAWsr4iHgod09FLs,5161
160
171
  honeybee_grasshopper_radiance/user_objects/HB View from Viewport.ghuser,sha256=HkrbtVZ30-mMP5digocyhD91dJ11XZj45HJ5JcNHE0Q,5130
161
172
  honeybee_grasshopper_radiance/user_objects/HB View.ghuser,sha256=7xXbhH8tekaZT-uqvBEcAgCttamF8ZDJsKWhBM4osgo,4793
173
+ honeybee_grasshopper_radiance/user_objects/HB Visualize Luminaire.ghuser,sha256=ENveyIA_ng0XooShX-A6SlGa-3T6tbXNZ8SWHr0OVnI,4410
162
174
  honeybee_grasshopper_radiance/user_objects/HB Visualize Sky.ghuser,sha256=p1NdLu8IbwywdOTmaDoq_PHKZ-XxUhzH6nSrk6CKCVg,6235
163
175
  honeybee_grasshopper_radiance/user_objects/HB Wea From Clear Sky.ghuser,sha256=T1laZulifE4Qp29a4bC03BmynzjIqUeS9a6AdhHyluY,5316
164
176
  honeybee_grasshopper_radiance/user_objects/HB Wea From EPW.ghuser,sha256=PcjwWzOlQm5Z0Uz8vqDl-UfaQM0I3YoGR3rC6BH3Jy0,4930
165
177
  honeybee_grasshopper_radiance/user_objects/HB Wea From Tau Clear Sky.ghuser,sha256=du9nzM95d3uL2-1sf1fFll_QfRloVaL4Q_JGd7Nb5NI,5367
166
178
  honeybee_grasshopper_radiance/user_objects/HB Wea from Zhang-Huang.ghuser,sha256=9KMXIDn5sfhk0h4QfZoKfFuHvI6x0bXVDJ3Ozd2CWNg,4678
167
179
  honeybee_grasshopper_radiance/user_objects/__init__.py,sha256=7BOscRVupILqwFUBWP6nAsMNgNN8lXQPsQ_zYUvGEr8,50
168
- honeybee_grasshopper_radiance-1.35.5.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
169
- honeybee_grasshopper_radiance-1.35.5.dist-info/METADATA,sha256=SzBVnI6rmZAxC1oQuSNit__YtQPdvzQVsdCDgliKySQ,2879
170
- honeybee_grasshopper_radiance-1.35.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
171
- honeybee_grasshopper_radiance-1.35.5.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
172
- honeybee_grasshopper_radiance-1.35.5.dist-info/RECORD,,
180
+ honeybee_grasshopper_radiance-1.36.0.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
181
+ honeybee_grasshopper_radiance-1.36.0.dist-info/METADATA,sha256=8HnhG48IFXptaXkPoS-iWYco7Z6X1lrd6PmLh9tQ5Lc,2879
182
+ honeybee_grasshopper_radiance-1.36.0.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
183
+ honeybee_grasshopper_radiance-1.36.0.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
184
+ honeybee_grasshopper_radiance-1.36.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5