honeybee-grasshopper-radiance 1.35.1__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.
Files changed (170) hide show
  1. honeybee_grasshopper_radiance/__init__.py +7 -0
  2. honeybee_grasshopper_radiance/src/HB Adjust HDR.py +107 -0
  3. honeybee_grasshopper_radiance/src/HB Ambient Resolution.py +63 -0
  4. honeybee_grasshopper_radiance/src/HB Annual Average Values.py +205 -0
  5. honeybee_grasshopper_radiance/src/HB Annual Cumulative Values.py +191 -0
  6. honeybee_grasshopper_radiance/src/HB Annual Daylight Metrics.py +209 -0
  7. honeybee_grasshopper_radiance/src/HB Annual Daylight.py +153 -0
  8. honeybee_grasshopper_radiance/src/HB Annual Glare Metrics.py +137 -0
  9. honeybee_grasshopper_radiance/src/HB Annual Irradiance.py +112 -0
  10. honeybee_grasshopper_radiance/src/HB Annual Peak Values.py +224 -0
  11. honeybee_grasshopper_radiance/src/HB Annual Results to Data.py +246 -0
  12. honeybee_grasshopper_radiance/src/HB Annual Sunlight Exposure.py +147 -0
  13. honeybee_grasshopper_radiance/src/HB Aperture Group Schedule.py +69 -0
  14. honeybee_grasshopper_radiance/src/HB Apply Face Modifier.py +107 -0
  15. honeybee_grasshopper_radiance/src/HB Apply ModifierSet.py +71 -0
  16. honeybee_grasshopper_radiance/src/HB Apply Shade Modifier.py +110 -0
  17. honeybee_grasshopper_radiance/src/HB Apply Window Modifier.py +120 -0
  18. honeybee_grasshopper_radiance/src/HB Assign Grids and Views.py +58 -0
  19. honeybee_grasshopper_radiance/src/HB Automatic Aperture Group.py +100 -0
  20. honeybee_grasshopper_radiance/src/HB BSDF Modifier.py +78 -0
  21. honeybee_grasshopper_radiance/src/HB CIE Standard Sky.py +75 -0
  22. honeybee_grasshopper_radiance/src/HB Certain Illuminance.py +41 -0
  23. honeybee_grasshopper_radiance/src/HB Check Scene.py +208 -0
  24. honeybee_grasshopper_radiance/src/HB Climatebased Sky.py +75 -0
  25. honeybee_grasshopper_radiance/src/HB Cumulative Radiation.py +98 -0
  26. honeybee_grasshopper_radiance/src/HB Custom Sky.py +74 -0
  27. honeybee_grasshopper_radiance/src/HB Daylight Control Schedule.py +211 -0
  28. honeybee_grasshopper_radiance/src/HB Daylight Factor.py +82 -0
  29. honeybee_grasshopper_radiance/src/HB Deconstruct Modifier.py +47 -0
  30. honeybee_grasshopper_radiance/src/HB Deconstruct ModifierSet Interior.py +67 -0
  31. honeybee_grasshopper_radiance/src/HB Deconstruct ModifierSet.py +80 -0
  32. honeybee_grasshopper_radiance/src/HB Deconstruct Wea.py +44 -0
  33. honeybee_grasshopper_radiance/src/HB Direct Sun Hours.py +88 -0
  34. honeybee_grasshopper_radiance/src/HB Dynamic Aperture Group.py +90 -0
  35. honeybee_grasshopper_radiance/src/HB Dynamic Shade Group.py +95 -0
  36. honeybee_grasshopper_radiance/src/HB Dynamic State Geometry.py +68 -0
  37. honeybee_grasshopper_radiance/src/HB Dynamic State.py +44 -0
  38. honeybee_grasshopper_radiance/src/HB Exterior Modifier Subset.py +68 -0
  39. honeybee_grasshopper_radiance/src/HB Extract HDR.py +225 -0
  40. honeybee_grasshopper_radiance/src/HB False Color.py +246 -0
  41. honeybee_grasshopper_radiance/src/HB Get Dynamic Groups.py +57 -0
  42. honeybee_grasshopper_radiance/src/HB Get Grids and Views.py +82 -0
  43. honeybee_grasshopper_radiance/src/HB Glare Postprocess.py +225 -0
  44. honeybee_grasshopper_radiance/src/HB Glass Modifier 3.py +62 -0
  45. honeybee_grasshopper_radiance/src/HB Glass Modifier.py +58 -0
  46. honeybee_grasshopper_radiance/src/HB HDR to GIF.py +72 -0
  47. honeybee_grasshopper_radiance/src/HB Imageless Annual Glare.py +108 -0
  48. honeybee_grasshopper_radiance/src/HB Interior Modifier Subset.py +83 -0
  49. honeybee_grasshopper_radiance/src/HB Metal Modifier 3.py +70 -0
  50. honeybee_grasshopper_radiance/src/HB Metal Modifier.py +68 -0
  51. honeybee_grasshopper_radiance/src/HB Mirror Modifier 3.py +56 -0
  52. honeybee_grasshopper_radiance/src/HB Mirror Modifier.py +55 -0
  53. honeybee_grasshopper_radiance/src/HB Model to Rad Folder.py +75 -0
  54. honeybee_grasshopper_radiance/src/HB ModifierSet.py +127 -0
  55. honeybee_grasshopper_radiance/src/HB Opaque Modifier 3.py +68 -0
  56. honeybee_grasshopper_radiance/src/HB Opaque Modifier.py +67 -0
  57. honeybee_grasshopper_radiance/src/HB Point-In-Time Grid-Based.py +93 -0
  58. honeybee_grasshopper_radiance/src/HB Point-In-Time View-Based.py +127 -0
  59. honeybee_grasshopper_radiance/src/HB Radial Grid from Rooms.py +160 -0
  60. honeybee_grasshopper_radiance/src/HB Radial Sensor Grid.py +99 -0
  61. honeybee_grasshopper_radiance/src/HB Radiance Parameter.py +163 -0
  62. honeybee_grasshopper_radiance/src/HB Search Modifier Sets.py +58 -0
  63. honeybee_grasshopper_radiance/src/HB Search Modifiers.py +58 -0
  64. honeybee_grasshopper_radiance/src/HB Section Plane View.py +69 -0
  65. honeybee_grasshopper_radiance/src/HB Sensor Grid from Apertures.py +153 -0
  66. honeybee_grasshopper_radiance/src/HB Sensor Grid from Faces.py +147 -0
  67. honeybee_grasshopper_radiance/src/HB Sensor Grid from Rooms.py +210 -0
  68. honeybee_grasshopper_radiance/src/HB Sensor Grid.py +82 -0
  69. honeybee_grasshopper_radiance/src/HB Shade Modifier Subset.py +62 -0
  70. honeybee_grasshopper_radiance/src/HB Sky View.py +86 -0
  71. honeybee_grasshopper_radiance/src/HB Spatial Daylight Autonomy.py +86 -0
  72. honeybee_grasshopper_radiance/src/HB Subface Modifier Subset.py +90 -0
  73. honeybee_grasshopper_radiance/src/HB Translucent Modifier 3.py +77 -0
  74. honeybee_grasshopper_radiance/src/HB Translucent Modifier.py +77 -0
  75. honeybee_grasshopper_radiance/src/HB View from Viewport.py +85 -0
  76. honeybee_grasshopper_radiance/src/HB View.py +96 -0
  77. honeybee_grasshopper_radiance/src/HB Visualize Sky.py +141 -0
  78. honeybee_grasshopper_radiance/src/HB Wea From Clear Sky.py +61 -0
  79. honeybee_grasshopper_radiance/src/HB Wea From EPW.py +50 -0
  80. honeybee_grasshopper_radiance/src/HB Wea From Tau Clear Sky.py +56 -0
  81. honeybee_grasshopper_radiance/src/HB Wea from Zhang-Huang.py +63 -0
  82. honeybee_grasshopper_radiance/src/__init__.py +1 -0
  83. honeybee_grasshopper_radiance/user_objects/HB Adjust HDR.ghuser +0 -0
  84. honeybee_grasshopper_radiance/user_objects/HB Ambient Resolution.ghuser +0 -0
  85. honeybee_grasshopper_radiance/user_objects/HB Annual Average Values.ghuser +0 -0
  86. honeybee_grasshopper_radiance/user_objects/HB Annual Cumulative Values.ghuser +0 -0
  87. honeybee_grasshopper_radiance/user_objects/HB Annual Daylight Metrics.ghuser +0 -0
  88. honeybee_grasshopper_radiance/user_objects/HB Annual Daylight.ghuser +0 -0
  89. honeybee_grasshopper_radiance/user_objects/HB Annual Glare Metrics.ghuser +0 -0
  90. honeybee_grasshopper_radiance/user_objects/HB Annual Irradiance.ghuser +0 -0
  91. honeybee_grasshopper_radiance/user_objects/HB Annual Peak Values.ghuser +0 -0
  92. honeybee_grasshopper_radiance/user_objects/HB Annual Results to Data.ghuser +0 -0
  93. honeybee_grasshopper_radiance/user_objects/HB Annual Sunlight Exposure.ghuser +0 -0
  94. honeybee_grasshopper_radiance/user_objects/HB Aperture Group Schedule.ghuser +0 -0
  95. honeybee_grasshopper_radiance/user_objects/HB Apply Face Modifier.ghuser +0 -0
  96. honeybee_grasshopper_radiance/user_objects/HB Apply ModifierSet.ghuser +0 -0
  97. honeybee_grasshopper_radiance/user_objects/HB Apply Shade Modifier.ghuser +0 -0
  98. honeybee_grasshopper_radiance/user_objects/HB Apply Window Modifier.ghuser +0 -0
  99. Views.ghuser +0 -0
  100. honeybee_grasshopper_radiance/user_objects/HB Automatic Aperture Group.ghuser +0 -0
  101. honeybee_grasshopper_radiance/user_objects/HB BSDF Modifier.ghuser +0 -0
  102. honeybee_grasshopper_radiance/user_objects/HB CIE Standard Sky.ghuser +0 -0
  103. honeybee_grasshopper_radiance/user_objects/HB Certain Illuminance.ghuser +0 -0
  104. honeybee_grasshopper_radiance/user_objects/HB Check Scene.ghuser +0 -0
  105. honeybee_grasshopper_radiance/user_objects/HB Climatebased Sky.ghuser +0 -0
  106. honeybee_grasshopper_radiance/user_objects/HB Cumulative Radiation.ghuser +0 -0
  107. honeybee_grasshopper_radiance/user_objects/HB Custom Sky.ghuser +0 -0
  108. honeybee_grasshopper_radiance/user_objects/HB Daylight Control Schedule.ghuser +0 -0
  109. honeybee_grasshopper_radiance/user_objects/HB Daylight Factor.ghuser +0 -0
  110. honeybee_grasshopper_radiance/user_objects/HB Deconstruct Modifier.ghuser +0 -0
  111. honeybee_grasshopper_radiance/user_objects/HB Deconstruct ModifierSet Interior.ghuser +0 -0
  112. honeybee_grasshopper_radiance/user_objects/HB Deconstruct ModifierSet.ghuser +0 -0
  113. honeybee_grasshopper_radiance/user_objects/HB Deconstruct Wea.ghuser +0 -0
  114. honeybee_grasshopper_radiance/user_objects/HB Direct Sun Hours.ghuser +0 -0
  115. honeybee_grasshopper_radiance/user_objects/HB Dynamic Aperture Group.ghuser +0 -0
  116. honeybee_grasshopper_radiance/user_objects/HB Dynamic Shade Group.ghuser +0 -0
  117. honeybee_grasshopper_radiance/user_objects/HB Dynamic State Geometry.ghuser +0 -0
  118. honeybee_grasshopper_radiance/user_objects/HB Dynamic State.ghuser +0 -0
  119. honeybee_grasshopper_radiance/user_objects/HB Exterior Modifier Subset.ghuser +0 -0
  120. honeybee_grasshopper_radiance/user_objects/HB Extract HDR.ghuser +0 -0
  121. honeybee_grasshopper_radiance/user_objects/HB Face Radiance Attributes.ghuser +0 -0
  122. honeybee_grasshopper_radiance/user_objects/HB False Color.ghuser +0 -0
  123. honeybee_grasshopper_radiance/user_objects/HB Get Dynamic Groups.ghuser +0 -0
  124. Views.ghuser +0 -0
  125. honeybee_grasshopper_radiance/user_objects/HB Glare Postprocess.ghuser +0 -0
  126. honeybee_grasshopper_radiance/user_objects/HB Glass Modifier 3.ghuser +0 -0
  127. honeybee_grasshopper_radiance/user_objects/HB Glass Modifier.ghuser +0 -0
  128. honeybee_grasshopper_radiance/user_objects/HB HDR to GIF.ghuser +0 -0
  129. honeybee_grasshopper_radiance/user_objects/HB Imageless Annual Glare.ghuser +0 -0
  130. honeybee_grasshopper_radiance/user_objects/HB Interior Modifier Subset.ghuser +0 -0
  131. honeybee_grasshopper_radiance/user_objects/HB Metal Modifier 3.ghuser +0 -0
  132. honeybee_grasshopper_radiance/user_objects/HB Metal Modifier.ghuser +0 -0
  133. honeybee_grasshopper_radiance/user_objects/HB Mirror Modifier 3.ghuser +0 -0
  134. honeybee_grasshopper_radiance/user_objects/HB Mirror Modifier.ghuser +0 -0
  135. honeybee_grasshopper_radiance/user_objects/HB Model to Rad Folder.ghuser +0 -0
  136. honeybee_grasshopper_radiance/user_objects/HB ModifierSet.ghuser +0 -0
  137. honeybee_grasshopper_radiance/user_objects/HB Opaque Modifier 3.ghuser +0 -0
  138. honeybee_grasshopper_radiance/user_objects/HB Opaque Modifier.ghuser +0 -0
  139. honeybee_grasshopper_radiance/user_objects/HB Point-In-Time Grid-Based.ghuser +0 -0
  140. honeybee_grasshopper_radiance/user_objects/HB Point-In-Time View-Based.ghuser +0 -0
  141. honeybee_grasshopper_radiance/user_objects/HB Radial Grid from Rooms.ghuser +0 -0
  142. honeybee_grasshopper_radiance/user_objects/HB Radial Sensor Grid.ghuser +0 -0
  143. honeybee_grasshopper_radiance/user_objects/HB Radiance Parameter.ghuser +0 -0
  144. honeybee_grasshopper_radiance/user_objects/HB Room Radiance Attributes.ghuser +0 -0
  145. honeybee_grasshopper_radiance/user_objects/HB Search Modifier Sets.ghuser +0 -0
  146. honeybee_grasshopper_radiance/user_objects/HB Search Modifiers.ghuser +0 -0
  147. honeybee_grasshopper_radiance/user_objects/HB Section Plane View.ghuser +0 -0
  148. honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Apertures.ghuser +0 -0
  149. honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Faces.ghuser +0 -0
  150. honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Rooms.ghuser +0 -0
  151. honeybee_grasshopper_radiance/user_objects/HB Sensor Grid.ghuser +0 -0
  152. honeybee_grasshopper_radiance/user_objects/HB Shade Modifier Subset.ghuser +0 -0
  153. honeybee_grasshopper_radiance/user_objects/HB Sky View.ghuser +0 -0
  154. honeybee_grasshopper_radiance/user_objects/HB Spatial Daylight Autonomy.ghuser +0 -0
  155. honeybee_grasshopper_radiance/user_objects/HB Subface Modifier Subset.ghuser +0 -0
  156. honeybee_grasshopper_radiance/user_objects/HB Translucent Modifier 3.ghuser +0 -0
  157. honeybee_grasshopper_radiance/user_objects/HB Translucent Modifier.ghuser +0 -0
  158. honeybee_grasshopper_radiance/user_objects/HB View from Viewport.ghuser +0 -0
  159. honeybee_grasshopper_radiance/user_objects/HB View.ghuser +0 -0
  160. honeybee_grasshopper_radiance/user_objects/HB Visualize Sky.ghuser +0 -0
  161. honeybee_grasshopper_radiance/user_objects/HB Wea From Clear Sky.ghuser +0 -0
  162. honeybee_grasshopper_radiance/user_objects/HB Wea From EPW.ghuser +0 -0
  163. honeybee_grasshopper_radiance/user_objects/HB Wea From Tau Clear Sky.ghuser +0 -0
  164. honeybee_grasshopper_radiance/user_objects/HB Wea from Zhang-Huang.ghuser +0 -0
  165. honeybee_grasshopper_radiance/user_objects/__init__.py +1 -0
  166. honeybee_grasshopper_radiance-1.35.1.dist-info/METADATA +64 -0
  167. honeybee_grasshopper_radiance-1.35.1.dist-info/RECORD +170 -0
  168. honeybee_grasshopper_radiance-1.35.1.dist-info/WHEEL +5 -0
  169. honeybee_grasshopper_radiance-1.35.1.dist-info/licenses/LICENSE +661 -0
  170. honeybee_grasshopper_radiance-1.35.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,56 @@
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 WEA object for an ASHRAE Revised Clear Sky (Tau Model) using a STAT file.
12
+ -
13
+
14
+ Args:
15
+ _stat_file: Full path to .stat file that will be used to make the clear
16
+ sky Wea. Note that an error will be raised if no atmospheric
17
+ optical data is found in the file. In this case, the "HB Wea from
18
+ Clear Sky" component can be used.
19
+ hoys_: An optional list of hours of the year (numbers from 0 to 8759) for
20
+ which the Wea will be filtered. HOYs can be generated from the
21
+ "LB Analysis Period" component or they can be obtained through
22
+ other means like analysis of the values in an occupancy schedule.
23
+ By default, the Wea will be generated for the whole year.
24
+ timestep_: An integer representing the timestep with which to make the
25
+ WEA object. Default is set to 1 for 1 step per hour of the year.
26
+
27
+ Returns:
28
+ wea: A wea object from stat file. This wea object represents an ASHRAE Revised
29
+ Clear Sky ("Tau Model"), which is intended to determine peak solar load
30
+ and sizing parmeters for HVAC systems. The "Tau Model" uses monthly
31
+ optical depths found within a .stat file.
32
+ """
33
+
34
+ ghenv.Component.Name = 'HB Wea From Tau Clear Sky'
35
+ ghenv.Component.NickName = 'TauClearSky'
36
+ ghenv.Component.Message = '1.9.0'
37
+ ghenv.Component.Category = 'HB-Radiance'
38
+ ghenv.Component.SubCategory = '2 :: Light Sources'
39
+ ghenv.Component.AdditionalHelpFromDocStrings = '2'
40
+
41
+ try:
42
+ from ladybug.wea import Wea
43
+ except ImportError as e:
44
+ raise ImportError('\nFailed to import ladybug:\n\t{}'.format(e))
45
+
46
+ try: # import ladybug_rhino dependencies
47
+ from ladybug_rhino.grasshopper import all_required_inputs
48
+ except ImportError as e:
49
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
50
+
51
+
52
+ if all_required_inputs(ghenv.Component):
53
+ timestep_ = 1 if timestep_ is None else timestep_
54
+ wea = Wea.from_stat_file(_stat_file, timestep_)
55
+ if len(hoys_) != 0:
56
+ wea = wea.filter_by_hoys(hoys_)
@@ -0,0 +1,63 @@
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
+ Construct a WEA from hourly data collections and the Zhang-Huang Solar Model.
12
+ -
13
+
14
+ Args:
15
+ _location: A Ladybug Location object.
16
+ _cloud_cover: Hourly DataCollection with the fraction of total sky cover
17
+ (tenths of coverage). (eg. 1 is 1/10 covered. 10 is total coverage)
18
+ _rel_humidity: Hourly DataCollection with relative humidity [%].
19
+ _dry_bulb_temp: Hourly DataCollection with dry bulb temperature [C].
20
+ _wind_speed: Hourly DataCollection with wind speed [m/s].
21
+ _atmos_pressure_: Hourly DataCollection with amtospheric pressure [Pa].
22
+ If no value is connected here, pressure at sea level will be
23
+ assumed (101,325 Pa).
24
+
25
+ Returns:
26
+ wea: A wea object from the input data collections and the Zhang-Huang
27
+ solar model.
28
+ """
29
+
30
+ ghenv.Component.Name = 'HB Wea from Zhang-Huang'
31
+ ghenv.Component.NickName = 'Zhang-Huang'
32
+ ghenv.Component.Message = '1.9.0'
33
+ ghenv.Component.Category = 'HB-Radiance'
34
+ ghenv.Component.SubCategory = '2 :: Light Sources'
35
+ ghenv.Component.AdditionalHelpFromDocStrings = '2'
36
+
37
+ try:
38
+ from ladybug.wea import Wea
39
+ from ladybug.datacollection import HourlyContinuousCollection
40
+ from ladybug.header import Header
41
+ from ladybug.datatype.pressure import AtmosphericStationPressure
42
+ except ImportError as e:
43
+ raise ImportError('\nFailed to import ladybug:\n\t{}'.format(e))
44
+
45
+ try:
46
+ from ladybug_rhino.grasshopper import all_required_inputs
47
+ except ImportError as e:
48
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
49
+
50
+
51
+ if all_required_inputs(ghenv.Component):
52
+ # perform checks.
53
+ assert isinstance(_cloud_cover, HourlyContinuousCollection), \
54
+ 'Data Collections must be Continuous Hourly.'
55
+ if _atmos_pressure_ is None:
56
+ header = Header(AtmosphericStationPressure(), 'Pa',
57
+ _cloud_cover.header.analysis_period, _cloud_cover.header.metadata)
58
+ _atmos_pressure_ = HourlyContinuousCollection(header,
59
+ [101325] * 8760 * _cloud_cover.header.analysis_period.timestep)
60
+
61
+ # build the Wea
62
+ wea = Wea.from_zhang_huang_solar(_location, _cloud_cover, _rel_humidity,
63
+ _dry_bulb_temp, _wind_speed, _atmos_pressure_)
@@ -0,0 +1 @@
1
+ """Honeybee Grasshopper Radiance Component Source Code."""
Views.ghuser ADDED
Binary file
Views.ghuser ADDED
Binary file
@@ -0,0 +1 @@
1
+ """Honeybee Grasshopper Radiance User Objects."""
@@ -0,0 +1,64 @@
1
+ Metadata-Version: 2.4
2
+ Name: honeybee-grasshopper-radiance
3
+ Version: 1.35.1
4
+ Summary: Honeybee Radiance plugin for Grasshopper.
5
+ Home-page: https://github.com/ladybug-tools/honeybee-grasshopper-radiance
6
+ Author: Ladybug Tools
7
+ Author-email: info@ladybug.tools
8
+ License: AGPL-3.0
9
+ Classifier: Programming Language :: Python :: 3.7
10
+ Classifier: Programming Language :: Python :: Implementation :: IronPython
11
+ Classifier: Operating System :: OS Independent
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: license
21
+ Dynamic: license-file
22
+ Dynamic: summary
23
+
24
+ [![Build Status](https://github.com/ladybug-tools/honeybee-grasshopper-radiance/workflows/CI/badge.svg)](https://github.com/ladybug-tools/honeybee-grasshopper-radiance/actions)
25
+
26
+ [![IronPython](https://img.shields.io/badge/ironpython-2.7-red.svg)](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)
27
+
28
+ # honeybee-grasshopper-radiance
29
+
30
+ :honeybee: :green_book: :zap: Honeybee Radiance plugin for Grasshopper (aka. honeybee[+]).
31
+
32
+ This repository contains all radiance modeling Grasshopper components for the honeybee
33
+ plugin. The package includes both the user objects (`.ghuser`) and the Python
34
+ source (`.py`). Note that this library only possesses the Grasshopper components
35
+ and, in order to run the plugin, the core libraries must be installed in a way that
36
+ they can be found by Rhino (see dependencies).
37
+
38
+ ## Dependencies
39
+
40
+ The honeybee-grasshopper-radiance plugin has the following dependencies on core libraries:
41
+
42
+ * [ladybug-core](https://github.com/ladybug-tools/ladybug)
43
+ * [ladybug-geometry](https://github.com/ladybug-tools/ladybug-geometry)
44
+ * [ladybug-comfort](https://github.com/ladybug-tools/ladybug-comfort)
45
+ * [ladybug-rhino](https://github.com/ladybug-tools/ladybug-rhino)
46
+ * [honeybee-core](https://github.com/ladybug-tools/honeybee-core)
47
+ * [honeybee-radiance](https://github.com/ladybug-tools/honeybee-radiance)
48
+ * [honeybee-radiance-folder](https://github.com/ladybug-tools/honeybee-radiance-folder)
49
+ * [honeybee-radiance-command](https://github.com/ladybug-tools/honeybee-radiance-command)
50
+ * [honeybee-standards](https://github.com/ladybug-tools/honeybee-standards)
51
+
52
+ ## Other Required Components
53
+
54
+ The honeybee-grasshopper-radiance plugin also requires the Grasshopper components within the
55
+ following repositories to be installed in order to work correctly:
56
+
57
+ * [ladybug-grasshopper](https://github.com/ladybug-tools/ladybug-grasshopper)
58
+ * [honeybee-grasshopper-core](https://github.com/ladybug-tools/honeybee-grasshopper-core)
59
+
60
+ ## Installation
61
+
62
+ See the [Wiki of the lbt-grasshopper repository](https://github.com/ladybug-tools/lbt-grasshopper/wiki)
63
+ for the installation instructions for the entire Ladybug Tools Grasshopper plugin
64
+ (including this repository).
@@ -0,0 +1,170 @@
1
+ honeybee_grasshopper_radiance/__init__.py,sha256=74_HUn2iNnsmqgDOBEsdshIz8qH76tyBFnJBrX-YtOI,351
2
+ honeybee_grasshopper_radiance/src/HB Adjust HDR.py,sha256=lCmVr0W5pc6RuqWNlzfnHPU9AREnCvbdZXMUYkh-qt8,4288
3
+ honeybee_grasshopper_radiance/src/HB Ambient Resolution.py,sha256=sVImZf9b7yJ4Y6rLftmahf286azdf7C2qXOl76uWY_E,2476
4
+ honeybee_grasshopper_radiance/src/HB Annual Average Values.py,sha256=3GgYxxR0lGZ5KeNDji1I6r7ri1q8s7gQCxMFPkx3CZU,9106
5
+ honeybee_grasshopper_radiance/src/HB Annual Cumulative Values.py,sha256=AotxHRmn_49m4F2Azx-eIPDHg_oOJLMW_2u_Aq0-OzQ,8367
6
+ honeybee_grasshopper_radiance/src/HB Annual Daylight Metrics.py,sha256=0QEaJsZwnqVYeRjIsY20xbAhxE9MlTLEKcC9leY6cEk,10215
7
+ honeybee_grasshopper_radiance/src/HB Annual Daylight.py,sha256=XxnvOYJKi3OK45Vc1iLDsPX3ZH89QlISZBUDj3yv7BA,9021
8
+ honeybee_grasshopper_radiance/src/HB Annual Glare Metrics.py,sha256=Uu-aqGjt3jlI3QFlsCqN0JwCQOe5y9dWUH9GACD6S3s,6328
9
+ honeybee_grasshopper_radiance/src/HB Annual Irradiance.py,sha256=siIRkhWb2i_wgZamlJGKktkgZ7CPi7qsML13Slti3Y4,6032
10
+ honeybee_grasshopper_radiance/src/HB Annual Peak Values.py,sha256=x-q1Y6tUTsOovB5C6Y2E47L9XpSPE-Jv0WAY5Rdtim0,10002
11
+ honeybee_grasshopper_radiance/src/HB Annual Results to Data.py,sha256=4HeXXyOFVQEBz60g4vC4f404BKjqmowUX6YZWNKzhvA,11021
12
+ honeybee_grasshopper_radiance/src/HB Annual Sunlight Exposure.py,sha256=NlJefTSQofAIZrlG_PClFhYdXhfE_rChH81mRW9Gr0w,6393
13
+ honeybee_grasshopper_radiance/src/HB Aperture Group Schedule.py,sha256=nL0lSzHEDI9iBGRSJODFAC1xDPu-GxTNIxGKa4qu7a8,3052
14
+ honeybee_grasshopper_radiance/src/HB Apply Face Modifier.py,sha256=Hl73JhJpvQR052x0TRjJvp0CQ84VwaBBeQijVw9QhWY,4475
15
+ honeybee_grasshopper_radiance/src/HB Apply ModifierSet.py,sha256=rlFhjekZGR1yM7D7vHLN7zYnkCiAvWEmHkS_5xHprIo,2513
16
+ honeybee_grasshopper_radiance/src/HB Apply Shade Modifier.py,sha256=YmUw7vTkWGfMfJ_Je-Do9_GcpkhxYQp5Z6mT-lntNgY,4727
17
+ honeybee_grasshopper_radiance/src/HB Apply Window Modifier.py,sha256=aM3Y7EicvIRg2z92cb5Gk5j2stgHlDsOYuVAmqG2KSE,5246
18
+ honeybee_grasshopper_radiance/src/HB Assign Grids and Views.py,sha256=orN401ly3D9-ztAeZ8ae3MwLh_sH8i6g-39MXeJYXuU,2159
19
+ honeybee_grasshopper_radiance/src/HB Automatic Aperture Group.py,sha256=BrQLGb4MxpeRuwgWfV71IcWl7jORAbWppc5utGLY410,4734
20
+ honeybee_grasshopper_radiance/src/HB BSDF Modifier.py,sha256=mYgkZueDLWr7DH7-KUrTso7UyB2P8SVZj92tgeTVqU4,3211
21
+ honeybee_grasshopper_radiance/src/HB CIE Standard Sky.py,sha256=P-Jh6MYfopmB55EBBSsou_KBfpmDFg_u6Sy77KgqopA,2845
22
+ honeybee_grasshopper_radiance/src/HB Certain Illuminance.py,sha256=Da1r6JBHtOyAbU4bene2va2VgW2rzKbYqxfeLkivC-o,1350
23
+ honeybee_grasshopper_radiance/src/HB Check Scene.py,sha256=zZCsWUVjfzneqMdsjD7QYOv8vBu0gKGuekw0H9eHiX0,9188
24
+ honeybee_grasshopper_radiance/src/HB Climatebased Sky.py,sha256=mtBZ6BTv_holUcVDJKXrtDt65YHxZqxTVSHVtLzN3Ik,2838
25
+ honeybee_grasshopper_radiance/src/HB Cumulative Radiation.py,sha256=co60vegFaNrMqttwULM3EwrEorBz_JGa0fOi82XhcYw,4954
26
+ honeybee_grasshopper_radiance/src/HB Custom Sky.py,sha256=3XWJ1eoC6GnxMj_PkthBOouFhHxZPYXKywQEByojyrg,2866
27
+ honeybee_grasshopper_radiance/src/HB Daylight Control Schedule.py,sha256=hAgTJpkUnXWh7Haz7wQTWYMQAF89mffSMG-mXhWnl_k,10185
28
+ honeybee_grasshopper_radiance/src/HB Daylight Factor.py,sha256=svl0mrYUeeAg0PXLeUYsze_ajsFtZXEifwVe5U3ag1w,3636
29
+ honeybee_grasshopper_radiance/src/HB Deconstruct Modifier.py,sha256=L6fu4tiaviV1deX2dkqhwJakgT6QjP4xpHa1Yki28Xw,1527
30
+ honeybee_grasshopper_radiance/src/HB Deconstruct ModifierSet Interior.py,sha256=oC1SiuVbqEuz03todgU5mxIa73IQvl1o-I4eVKcXcq8,2695
31
+ honeybee_grasshopper_radiance/src/HB Deconstruct ModifierSet.py,sha256=YXkpKUM_hrFC6-o0BGryU_AL5JvzfM8EDpOVUlftW8E,3597
32
+ honeybee_grasshopper_radiance/src/HB Deconstruct Wea.py,sha256=3HgC3NUsutYc-0HfhY3bZpRSpSOs-fU_6x3gxNEVw7U,1521
33
+ honeybee_grasshopper_radiance/src/HB Direct Sun Hours.py,sha256=B8xzrTkGz496MKO_jmkJQoBhDlcMQv8HS5lypZHudPA,4026
34
+ honeybee_grasshopper_radiance/src/HB Dynamic Aperture Group.py,sha256=_jC56_o41JNChd_8oZBy9QE1egWagtSm-PkOqxYh-qk,3994
35
+ honeybee_grasshopper_radiance/src/HB Dynamic Shade Group.py,sha256=MDl6SoHGiWNBcynvxTNyYhXCaXSzsOH-aPuW4eJuKKA,4182
36
+ honeybee_grasshopper_radiance/src/HB Dynamic State Geometry.py,sha256=imlSh41GFIAUHmNoqmckpnCzrFGzi7RGco5HolsCAgA,2682
37
+ honeybee_grasshopper_radiance/src/HB Dynamic State.py,sha256=19eb2xsMqyqjcO2vs8rhkNd10RC1k1LTDwlQ7PoH4CI,1752
38
+ honeybee_grasshopper_radiance/src/HB Exterior Modifier Subset.py,sha256=OtwcsD1kdvgnM2ORnSC2uvv0gpuZGJVp8oxpEfKycac,2520
39
+ honeybee_grasshopper_radiance/src/HB Extract HDR.py,sha256=7-DrUYHF5szeex32VM7cexJxiMBiVk4wrs8fEXySvVQ,9067
40
+ honeybee_grasshopper_radiance/src/HB False Color.py,sha256=qwuHFovSOnnTUZDDt8YrYWXjutMc85JhyFUcgyYceo8,10148
41
+ honeybee_grasshopper_radiance/src/HB Get Dynamic Groups.py,sha256=lyu5ywOLox2Zk6ykMzHjBT2_nab9XEGshzpT6q-fV0g,2191
42
+ honeybee_grasshopper_radiance/src/HB Get Grids and Views.py,sha256=BD-c2jznMQ2uRDNB6oa7r2VQTUiQ4tNYLfUyiCtGBQ4,3501
43
+ honeybee_grasshopper_radiance/src/HB Glare Postprocess.py,sha256=RP4CJliFB5c0j-c0ODiff5ke9yYF1hlOhNXbXMezdrY,10101
44
+ honeybee_grasshopper_radiance/src/HB Glass Modifier 3.py,sha256=dg9iVqX4vVWGQ7HmO9KSUc8mKExWkaAvS0ALOwreJEA,2447
45
+ honeybee_grasshopper_radiance/src/HB Glass Modifier.py,sha256=T3Ji5cVgTyljMY8VQQ5hvS4-jZY4TMQNsJqQqLwjtwo,2244
46
+ honeybee_grasshopper_radiance/src/HB HDR to GIF.py,sha256=pdtGsDEb5L9UYZJ3VWDp11qiO0T1Vk0Ou49LjHgxmP4,2490
47
+ honeybee_grasshopper_radiance/src/HB Imageless Annual Glare.py,sha256=XYeAod6F_a68gNsOqYU6kghw6W4s7N8fcjw1T0NA8tY,5699
48
+ honeybee_grasshopper_radiance/src/HB Interior Modifier Subset.py,sha256=vZAqeeJsUO9FP6j1fpjU2O8v7aVt0qoVgl5XnlyCveM,3465
49
+ honeybee_grasshopper_radiance/src/HB Metal Modifier 3.py,sha256=S59Tzp9bc-sKIXo3yTT2xvkR8qNV8KgQ75EDG2k_Iws,3074
50
+ honeybee_grasshopper_radiance/src/HB Metal Modifier.py,sha256=BaGyK14frU4Bf-c13mQklmzXZe86UbBEh1vRF89tK6I,2845
51
+ honeybee_grasshopper_radiance/src/HB Mirror Modifier 3.py,sha256=kLVxghPEoqcfAdrkgLdeFrbUW5UIjMjNRGKv03TJ7lg,2077
52
+ honeybee_grasshopper_radiance/src/HB Mirror Modifier.py,sha256=FlnaiE29uokvRvMVG8amNRwXyychKxFadEZtc50962k,2033
53
+ honeybee_grasshopper_radiance/src/HB Model to Rad Folder.py,sha256=ERr4GXa3FD6GE4pulfuKwaB0c8Afb9Mg2DuzTiKYTJE,2837
54
+ honeybee_grasshopper_radiance/src/HB ModifierSet.py,sha256=zNKdohB-Gwv-hrHNnIP5khi4cn51Ao4W0cceKxW9HdA,5990
55
+ honeybee_grasshopper_radiance/src/HB Opaque Modifier 3.py,sha256=taerm0EWg6LgpaKTX-5bdFcZXd1FIOGM6IJlEmiO0tQ,2915
56
+ honeybee_grasshopper_radiance/src/HB Opaque Modifier.py,sha256=9eAxqRyfc5IVqyCV01dSgWYhQZmumfXkk-bvl_Dz_NI,2843
57
+ honeybee_grasshopper_radiance/src/HB Point-In-Time Grid-Based.py,sha256=fdEv6qdfgnFrj_dm7--knsyxByDNzvIhuqiiVY61Nbs,4226
58
+ honeybee_grasshopper_radiance/src/HB Point-In-Time View-Based.py,sha256=0PJEe7IpcuGzcGSqFUAOKEp2kxis2bnV55shqtQmpjU,6306
59
+ honeybee_grasshopper_radiance/src/HB Radial Grid from Rooms.py,sha256=g7gqvEoEGRzBczMkcRm0si0QQTcQrRk4qvb7BrNmFeg,6886
60
+ honeybee_grasshopper_radiance/src/HB Radial Sensor Grid.py,sha256=JRWisFE4QT6toSYy-yUM-0uOtpaqSJjEI9s4AStPxC4,4548
61
+ honeybee_grasshopper_radiance/src/HB Radiance Parameter.py,sha256=9CfbktjdzD-lZH30xAjS8Fga7poO5TcaSOrANj22sFU,5266
62
+ honeybee_grasshopper_radiance/src/HB Search Modifier Sets.py,sha256=xC5HpxeITgdPeLlXHx0KGYMFGr1Ec7WRRp_leL9E1rY,2361
63
+ honeybee_grasshopper_radiance/src/HB Search Modifiers.py,sha256=p7Q3ugy-fmEF0M_UUi3IMgcCHN-0mUesVzU4cEJAlVk,2330
64
+ honeybee_grasshopper_radiance/src/HB Section Plane View.py,sha256=rddqvUMI-5x5PMdDVAKqth50RfmvD22x3G2Lcg6wUbE,2585
65
+ honeybee_grasshopper_radiance/src/HB Sensor Grid from Apertures.py,sha256=dF-gtlURDJs3B_mwvUF4PEUbSX_IRP22B1aHY-DzYfY,6660
66
+ honeybee_grasshopper_radiance/src/HB Sensor Grid from Faces.py,sha256=hq8VvvKmPUWKNfVDrGFPldFOrrE19jrM77iQemxF-wk,6484
67
+ honeybee_grasshopper_radiance/src/HB Sensor Grid from Rooms.py,sha256=he2oyS-30ZeY-dN97tbaBQ1GXK-ZSMiHKcVg4UuJqyw,9551
68
+ honeybee_grasshopper_radiance/src/HB Sensor Grid.py,sha256=VSMyAyHtSdCfHMKxedxsDOOramROzGm5D54Pnd-iGLs,3595
69
+ honeybee_grasshopper_radiance/src/HB Shade Modifier Subset.py,sha256=Nd0GhA_a9kzwD_zdKlE-OfFdqOOu8czWnpVmgto5Atw,2253
70
+ honeybee_grasshopper_radiance/src/HB Sky View.py,sha256=XkABHrKuD1u94rirfaTGBNv7t2Tuggk56mYtpYZztnk,3832
71
+ honeybee_grasshopper_radiance/src/HB Spatial Daylight Autonomy.py,sha256=MHp-sLemqau3Wod-1DMUW5HSQ5ISK8gkztmS1ThTVWU,3985
72
+ honeybee_grasshopper_radiance/src/HB Subface Modifier Subset.py,sha256=XZ7aNh5KnmMeohQqRe9Sjxg2tJ-0PDuGWKJNXqEwSdM,3837
73
+ honeybee_grasshopper_radiance/src/HB Translucent Modifier 3.py,sha256=XR-dTuNmv6mfmjqTDPR-4xgb4-paX9oqZ_mlY7nYyZI,3460
74
+ honeybee_grasshopper_radiance/src/HB Translucent Modifier.py,sha256=Sq3PTHjaYXKTlJvrrq9b-HI5cirrVW-jnuWDITVNSyU,3389
75
+ honeybee_grasshopper_radiance/src/HB View from Viewport.py,sha256=dOkZnXzpAzdbwGJOt5xdToiZTYyGL1XuQe47awVI6-8,3423
76
+ honeybee_grasshopper_radiance/src/HB View.py,sha256=DzhoXVGdW-AEVfG8d0yS-oBRKrkY66JZWWYCGiDIq3g,4108
77
+ honeybee_grasshopper_radiance/src/HB Visualize Sky.py,sha256=an9NEfYSyULo7ImRfhxnWt4YxTHql_nJcfJgIKbK7po,5692
78
+ honeybee_grasshopper_radiance/src/HB Wea From Clear Sky.py,sha256=tkFAk1iBRvY7h6ALo96moaxNRLF6_KILWoixZUC02aE,2747
79
+ honeybee_grasshopper_radiance/src/HB Wea From EPW.py,sha256=LBuu58gb50vuJb3PV9J5qSJNxNDLz1qX6bnpbSbo658,1853
80
+ honeybee_grasshopper_radiance/src/HB Wea From Tau Clear Sky.py,sha256=CAXNLph6BYuwHFcKsD9v5WuzS5Mb7WSlpcJIHDjGB7U,2407
81
+ honeybee_grasshopper_radiance/src/HB Wea from Zhang-Huang.py,sha256=_wq8G1jiPgAb6YEUwLv7khKuWIg5kOOTb6fguv6AEmQ,2562
82
+ honeybee_grasshopper_radiance/src/__init__.py,sha256=vvjkuMcZSQQvmG068RMNsB0qce6k6_plH0Yl0UL82gY,59
83
+ honeybee_grasshopper_radiance/user_objects/HB Adjust HDR.ghuser,sha256=MF-MAn-Jp2fzkTgAOcRcK1h2jRHYnIDAwE_iDahag3g,5396
84
+ honeybee_grasshopper_radiance/user_objects/HB Ambient Resolution.ghuser,sha256=kTq5dWW8unIwKIun1CL1QYOXGhTw_ZGcFFSx2mpo3uY,4821
85
+ honeybee_grasshopper_radiance/user_objects/HB Annual Average Values.ghuser,sha256=Dre1vM7hCzfyMkEWt6D6YVSwhMSDXhi6SDSGI50EK6w,6581
86
+ honeybee_grasshopper_radiance/user_objects/HB Annual Cumulative Values.ghuser,sha256=1JENjyTSNPVYtvAQa8FpWEdXmNIz3Qe8Ow0OUxV78Js,6404
87
+ honeybee_grasshopper_radiance/user_objects/HB Annual Daylight Metrics.ghuser,sha256=sh_y6oqx5ih3Qfal0zub7joz9Mlxm2xUJh1HVlSI7NE,7471
88
+ honeybee_grasshopper_radiance/user_objects/HB Annual Daylight.ghuser,sha256=_LX4e1V_VrbHhaRxB2WFI5G_RIUQcp6f8cUaJ2dlSoU,8230
89
+ honeybee_grasshopper_radiance/user_objects/HB Annual Glare Metrics.ghuser,sha256=dGeeL4A_ozLE2tlkMVC8SDxJkXariyzwePQJuuVWciQ,6714
90
+ honeybee_grasshopper_radiance/user_objects/HB Annual Irradiance.ghuser,sha256=w1r_ZZqRwsjTv6hw06xjc86uD_-mCIO-y9rbQS09eL4,7347
91
+ honeybee_grasshopper_radiance/user_objects/HB Annual Peak Values.ghuser,sha256=9OM0F7Po7CuKPbxLNIvh-G_IxDKddhdelIYaq6K7j8Y,7127
92
+ honeybee_grasshopper_radiance/user_objects/HB Annual Results to Data.ghuser,sha256=bQ9T5VAVir1Cb7CynWMNmJSAz-bk6S57z0IwKILq6hs,7147
93
+ honeybee_grasshopper_radiance/user_objects/HB Annual Sunlight Exposure.ghuser,sha256=SoeX9wjEJH1BJbDwGpdyuqeJO8EK2LLjskYRprIL_xI,5578
94
+ honeybee_grasshopper_radiance/user_objects/HB Aperture Group Schedule.ghuser,sha256=7-tSPfPcf4DkuQGBv3MruJOnlffX8g0pf5_GRW1brHw,5178
95
+ honeybee_grasshopper_radiance/user_objects/HB Apply Face Modifier.ghuser,sha256=tDRYfk6OGwxzvkilbeLX7QwY95W-l9sveozSc2Xb2Ys,4978
96
+ honeybee_grasshopper_radiance/user_objects/HB Apply ModifierSet.ghuser,sha256=h6Rl3WsDjcFfmXC1br2vy1hj9s0KIC30PTz2bshyHN4,4565
97
+ honeybee_grasshopper_radiance/user_objects/HB Apply Shade Modifier.ghuser,sha256=W8yohdExaWTnr8_C0VhdTwK_W3MKXI0445TGnT3bf0k,4837
98
+ honeybee_grasshopper_radiance/user_objects/HB Apply Window Modifier.ghuser,sha256=kljM7xdftrAJpBeoCedWOR7FiK9hsCip4UXx-EhWb_8,5149
99
+ honeybee_grasshopper_radiance/user_objects/HB Assign Grids and Views.ghuser,sha256=9dgIbZvj-AaEtk3CmpK9urH2I_qu9vFyGEdzGHWnGaY,4916
100
+ honeybee_grasshopper_radiance/user_objects/HB Automatic Aperture Group.ghuser,sha256=6ix7NL_fmLdNOHH0oD9lHHtTH5il1EmxnQ1nh-FZQIg,6191
101
+ honeybee_grasshopper_radiance/user_objects/HB BSDF Modifier.ghuser,sha256=46H-G1F1FDI05YMYtvD6EOjMs5tQmi50SISR7r1xFAo,5257
102
+ honeybee_grasshopper_radiance/user_objects/HB CIE Standard Sky.ghuser,sha256=CS_r9U-j9UNhx5BpWnmMK0CqLvw06hc-ogl-4292kT8,5352
103
+ honeybee_grasshopper_radiance/user_objects/HB Certain Illuminance.ghuser,sha256=4AZ3CD7oZ_2hbBhDC0nJzQ1CkBsftbOBjRsSAFCf704,4146
104
+ honeybee_grasshopper_radiance/user_objects/HB Check Scene.ghuser,sha256=-NaaPRI7Lb9EK76fsOccSmBcimBzJh1ssNgbZskkEPU,7106
105
+ honeybee_grasshopper_radiance/user_objects/HB Climatebased Sky.ghuser,sha256=0LwG6Go0Hv10PwtRPLfw0KQZuB4nHylyPJ_VIvfXITs,4824
106
+ honeybee_grasshopper_radiance/user_objects/HB Cumulative Radiation.ghuser,sha256=jLJs4NGD_2-lUmUhtYeRMW1hxZKG7D3mRV2oJKxBLeE,6254
107
+ honeybee_grasshopper_radiance/user_objects/HB Custom Sky.ghuser,sha256=k4GS_-McHDTTmjbxc1K87QnKHouXr4ZmQ2Cq5K_WvYQ,5380
108
+ honeybee_grasshopper_radiance/user_objects/HB Daylight Control Schedule.ghuser,sha256=xMJifT1LSZci2khUXPZU9wrMdrHEuVbgsmXh_MhqIew,7407
109
+ honeybee_grasshopper_radiance/user_objects/HB Daylight Factor.ghuser,sha256=knatFkcHC0hAL5M4XZwy1kCLahKFdrYjtBHht_G7ivU,5510
110
+ honeybee_grasshopper_radiance/user_objects/HB Deconstruct Modifier.ghuser,sha256=fFutDflIERHhgdtV8cW8IwzSxS4h9pZ4A5154PfNSSI,3999
111
+ honeybee_grasshopper_radiance/user_objects/HB Deconstruct ModifierSet Interior.ghuser,sha256=CiQQNJ8jnUmoTLkR6OvDGw-sTfW43HfFS7KH7-8Udy8,4550
112
+ honeybee_grasshopper_radiance/user_objects/HB Deconstruct ModifierSet.ghuser,sha256=xvrqyhAebNoq1sLiKbT-0GIJptTVujlM2mbVswSWPsQ,4965
113
+ honeybee_grasshopper_radiance/user_objects/HB Deconstruct Wea.ghuser,sha256=5UZuAyFGyFpPW8nLJQ794-a0kcLeY5WvcdIA134XCbE,4833
114
+ honeybee_grasshopper_radiance/user_objects/HB Direct Sun Hours.ghuser,sha256=zRl-LzNjR1_n_fU2BsV_UGu8QYkR-slAknyoaGeUhsI,6152
115
+ honeybee_grasshopper_radiance/user_objects/HB Dynamic Aperture Group.ghuser,sha256=68wOhgFjY7XI26m7QoSISVLfFHA3sI1MdL9YGuSGuqo,5819
116
+ honeybee_grasshopper_radiance/user_objects/HB Dynamic Shade Group.ghuser,sha256=YGsf2SetPWXs2-7qyfAHlqGaq3YavNT_ox3cJ_ItSSU,4804
117
+ honeybee_grasshopper_radiance/user_objects/HB Dynamic State Geometry.ghuser,sha256=6eVZB5wjWT5Zcc4R2_xA-fE2w21JYWs-IpU4Zr4H2g0,4197
118
+ honeybee_grasshopper_radiance/user_objects/HB Dynamic State.ghuser,sha256=JMIvK9AHBugpih8n8scK3-7DQ-wUOQgBJPsJPtdjH3w,3485
119
+ honeybee_grasshopper_radiance/user_objects/HB Exterior Modifier Subset.ghuser,sha256=BP29ZllA8iQmausgsd9AYu1HxiDcdTM1RzTM7OhR3-o,3976
120
+ honeybee_grasshopper_radiance/user_objects/HB Extract HDR.ghuser,sha256=z9siCtMgyU2UBbzQLQoN3LZshey_Cvcb0fw68fIBBDo,7057
121
+ honeybee_grasshopper_radiance/user_objects/HB Face Radiance Attributes.ghuser,sha256=yU2xi4DpW03dN22Fp1uLcSx0cW9KDZ2nxa78WY9F2eg,2444
122
+ honeybee_grasshopper_radiance/user_objects/HB False Color.ghuser,sha256=Nqz72VISUDbpcEPv5sbK9OXbgECD9vzjRldmqPkqCUg,9461
123
+ honeybee_grasshopper_radiance/user_objects/HB Get Dynamic Groups.ghuser,sha256=Et_Dr3PP5RiRGfrrUgbTsHEgSrGSphzCiZ7n2SrhmzY,4752
124
+ honeybee_grasshopper_radiance/user_objects/HB Get Grids and Views.ghuser,sha256=eK7dP7xvNzEzA1yyQXi-aUwugU-iyPSrFkuuQtkaOFo,5453
125
+ honeybee_grasshopper_radiance/user_objects/HB Glare Postprocess.ghuser,sha256=5hPJ1BUX-2mbWT1OU7dGL_nqO9MQpAieAUIEpTGIQMU,7093
126
+ honeybee_grasshopper_radiance/user_objects/HB Glass Modifier 3.ghuser,sha256=UwytypGF4F2qthnCLTCGtbxJTUWtGrqd74RA7Js2NtM,4730
127
+ honeybee_grasshopper_radiance/user_objects/HB Glass Modifier.ghuser,sha256=yJKk0Ez_3kMgWS2hXvHtddyhTi0XUhEBi0qEMyZx5xc,4104
128
+ honeybee_grasshopper_radiance/user_objects/HB HDR to GIF.ghuser,sha256=TiTKrEBucVk2iBA89UEFvFz25ml_QLNw6ytEYuwHad4,6413
129
+ honeybee_grasshopper_radiance/user_objects/HB Imageless Annual Glare.ghuser,sha256=TzlT0llpgtWojoRGQwBt5VIWKuXDFTv-lYrX3nW2HyM,7174
130
+ honeybee_grasshopper_radiance/user_objects/HB Interior Modifier Subset.ghuser,sha256=g7S5F3bRviH-DXbB8yoerZBiaxxPg87NxFALn0TcFAo,4206
131
+ honeybee_grasshopper_radiance/user_objects/HB Metal Modifier 3.ghuser,sha256=ftJH5ek_syV3wGYPGZSz1B6_KiAW454Z9EQU_8e_t7U,5300
132
+ honeybee_grasshopper_radiance/user_objects/HB Metal Modifier.ghuser,sha256=yE3z40xVfYbYtVgMW5g1597VhUyiVHQsJaOSNSn2aWg,4868
133
+ honeybee_grasshopper_radiance/user_objects/HB Mirror Modifier 3.ghuser,sha256=QL7_Kffy_4AUpUWyYOyEH5xSmcB-pIhmXyae3oUytzA,4611
134
+ honeybee_grasshopper_radiance/user_objects/HB Mirror Modifier.ghuser,sha256=rqtY62iBoQyeOD4P7MeUArlLecD6dbxBUOZy7Lhmfhg,3885
135
+ honeybee_grasshopper_radiance/user_objects/HB Model to Rad Folder.ghuser,sha256=gQA2p81l2w_LSnkVNvmpqRZ_T2Uixjwj7meCW0BycPM,6509
136
+ honeybee_grasshopper_radiance/user_objects/HB ModifierSet.ghuser,sha256=vMO7Iu8DRj1ekCypy5R0fdKBczG3kflLTDQHnOOhVZ4,5685
137
+ honeybee_grasshopper_radiance/user_objects/HB Opaque Modifier 3.ghuser,sha256=d55a0XlKdfZeSN34SlMIUYMMdA6PnKOIc2v-zGKbAn8,5257
138
+ honeybee_grasshopper_radiance/user_objects/HB Opaque Modifier.ghuser,sha256=vSWZxe_h0oWhlXGqEzp2NWYtEvO194SQYQH3kO6ZmKM,4710
139
+ honeybee_grasshopper_radiance/user_objects/HB Point-In-Time Grid-Based.ghuser,sha256=yASQlfMhYewQjCi5-lWk9JxER-lq5ryp-3vNldsx2r4,5634
140
+ honeybee_grasshopper_radiance/user_objects/HB Point-In-Time View-Based.ghuser,sha256=6hxo991rdlcjw4Rw3O_QcBR0vHIdDaa1wtwnmZnpGhs,7213
141
+ honeybee_grasshopper_radiance/user_objects/HB Radial Grid from Rooms.ghuser,sha256=vC3lvTI8oC22HlmNpiEhqnG1xJGFemeHZ6VAEdeSH_A,6981
142
+ honeybee_grasshopper_radiance/user_objects/HB Radial Sensor Grid.ghuser,sha256=0dNiPcGHypjv6L64CYVTZhsTAF1Ot4ptJpeILoCoQB4,6026
143
+ honeybee_grasshopper_radiance/user_objects/HB Radiance Parameter.ghuser,sha256=cbhb9tNcqSBsVuq8KWZ8i64bwr87dCI1CwOCjGJP5Hw,6899
144
+ honeybee_grasshopper_radiance/user_objects/HB Room Radiance Attributes.ghuser,sha256=XCpBEQfsbzyTlg6vcVcbBbdISJDXcFPV1ulRQjNBhzc,2789
145
+ honeybee_grasshopper_radiance/user_objects/HB Search Modifier Sets.ghuser,sha256=lUNzOcqPERwCeVVA0U8t2SAiAaUUUVp72xSxR2IVKlE,4284
146
+ honeybee_grasshopper_radiance/user_objects/HB Search Modifiers.ghuser,sha256=JzAT4IGff31rznYRgcyJuD33MdPy2K0QGg9DmTV8TZ0,4225
147
+ honeybee_grasshopper_radiance/user_objects/HB Section Plane View.ghuser,sha256=ilchitRgqm1xlrEueCWD7APST2xWvMDZQuGRpeb203k,4329
148
+ honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Apertures.ghuser,sha256=Sd-fKzm4UH2hUne_FmiHzHmldNrnrkp_-UAqYL1VjDE,5920
149
+ honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Faces.ghuser,sha256=dp-iHGCHme6hJ2xzn3PxgcfDriNYjrk5JMOzIBgilOQ,6166
150
+ honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Rooms.ghuser,sha256=BbWtcHb3EoGVXtk_iQggh7pBI2fZyBFDp2Yi7kLdjew,6576
151
+ honeybee_grasshopper_radiance/user_objects/HB Sensor Grid.ghuser,sha256=JkUlxudZScZ-nwaAlwaOGuRqlDpopQgFWy2xXrNfRKE,5630
152
+ honeybee_grasshopper_radiance/user_objects/HB Shade Modifier Subset.ghuser,sha256=kq72225e76XlNb7oqrpAenBlOnxFFiMm-1jUPc8wDVc,4478
153
+ honeybee_grasshopper_radiance/user_objects/HB Sky View.ghuser,sha256=eJX4GUVIRFTMEmyLikooCbmoy32N9NZcjDkenHKvkQQ,6009
154
+ honeybee_grasshopper_radiance/user_objects/HB Spatial Daylight Autonomy.ghuser,sha256=b3CJgY1p0exjaXCLIjVm0TVEZRAeUdKtmD3kJrE7RUM,5979
155
+ honeybee_grasshopper_radiance/user_objects/HB Subface Modifier Subset.ghuser,sha256=e0BN1wVqK-1v1vd1BMDIMC9hwb6QQ4Uy2Gm_6gq3g98,4894
156
+ honeybee_grasshopper_radiance/user_objects/HB Translucent Modifier 3.ghuser,sha256=wO6GWYRsHQVoQUW7bF1ws01kiUDsaimUCWrinaj-TOw,5552
157
+ honeybee_grasshopper_radiance/user_objects/HB Translucent Modifier.ghuser,sha256=TMgFn8NMjq6LkLDKzoUA5W4CCk2LAWsr4iHgod09FLs,5161
158
+ honeybee_grasshopper_radiance/user_objects/HB View from Viewport.ghuser,sha256=HkrbtVZ30-mMP5digocyhD91dJ11XZj45HJ5JcNHE0Q,5130
159
+ honeybee_grasshopper_radiance/user_objects/HB View.ghuser,sha256=7xXbhH8tekaZT-uqvBEcAgCttamF8ZDJsKWhBM4osgo,4793
160
+ honeybee_grasshopper_radiance/user_objects/HB Visualize Sky.ghuser,sha256=p1NdLu8IbwywdOTmaDoq_PHKZ-XxUhzH6nSrk6CKCVg,6235
161
+ honeybee_grasshopper_radiance/user_objects/HB Wea From Clear Sky.ghuser,sha256=T1laZulifE4Qp29a4bC03BmynzjIqUeS9a6AdhHyluY,5316
162
+ honeybee_grasshopper_radiance/user_objects/HB Wea From EPW.ghuser,sha256=PcjwWzOlQm5Z0Uz8vqDl-UfaQM0I3YoGR3rC6BH3Jy0,4930
163
+ honeybee_grasshopper_radiance/user_objects/HB Wea From Tau Clear Sky.ghuser,sha256=du9nzM95d3uL2-1sf1fFll_QfRloVaL4Q_JGd7Nb5NI,5367
164
+ honeybee_grasshopper_radiance/user_objects/HB Wea from Zhang-Huang.ghuser,sha256=9KMXIDn5sfhk0h4QfZoKfFuHvI6x0bXVDJ3Ozd2CWNg,4678
165
+ honeybee_grasshopper_radiance/user_objects/__init__.py,sha256=7BOscRVupILqwFUBWP6nAsMNgNN8lXQPsQ_zYUvGEr8,50
166
+ honeybee_grasshopper_radiance-1.35.1.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
167
+ honeybee_grasshopper_radiance-1.35.1.dist-info/METADATA,sha256=t4qd9koJ_-bDuPD_u98BFyeB6UWuLWUeSwqMDLaIcyU,2879
168
+ honeybee_grasshopper_radiance-1.35.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
169
+ honeybee_grasshopper_radiance-1.35.1.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
170
+ honeybee_grasshopper_radiance-1.35.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+