honeybee-grasshopper-radiance 1.35.2__py3-none-any.whl → 1.35.4__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 (21) hide show
  1. honeybee_grasshopper_radiance/src/HB Annual Average Values.py +4 -4
  2. honeybee_grasshopper_radiance/src/HB Annual Cumulative Values.py +4 -4
  3. honeybee_grasshopper_radiance/src/HB Annual Daylight Metrics.py +4 -4
  4. honeybee_grasshopper_radiance/src/HB Annual Peak Values.py +4 -4
  5. honeybee_grasshopper_radiance/src/HB Annual Results to Data.py +2 -2
  6. honeybee_grasshopper_radiance/src/HB Annual Statistics.py +187 -0
  7. honeybee_grasshopper_radiance/src/HB Annual Sunlight Exposure.py +4 -4
  8. honeybee_grasshopper_radiance/src/HB Daylight Control Schedule.py +4 -4
  9. honeybee_grasshopper_radiance/user_objects/HB Annual Average Values.ghuser +0 -0
  10. honeybee_grasshopper_radiance/user_objects/HB Annual Cumulative Values.ghuser +0 -0
  11. honeybee_grasshopper_radiance/user_objects/HB Annual Daylight Metrics.ghuser +0 -0
  12. honeybee_grasshopper_radiance/user_objects/HB Annual Peak Values.ghuser +0 -0
  13. honeybee_grasshopper_radiance/user_objects/HB Annual Results to Data.ghuser +0 -0
  14. honeybee_grasshopper_radiance/user_objects/HB Annual Statistics.ghuser +0 -0
  15. honeybee_grasshopper_radiance/user_objects/HB Annual Sunlight Exposure.ghuser +0 -0
  16. honeybee_grasshopper_radiance/user_objects/HB Daylight Control Schedule.ghuser +0 -0
  17. {honeybee_grasshopper_radiance-1.35.2.dist-info → honeybee_grasshopper_radiance-1.35.4.dist-info}/METADATA +1 -1
  18. {honeybee_grasshopper_radiance-1.35.2.dist-info → honeybee_grasshopper_radiance-1.35.4.dist-info}/RECORD +21 -19
  19. {honeybee_grasshopper_radiance-1.35.2.dist-info → honeybee_grasshopper_radiance-1.35.4.dist-info}/WHEEL +0 -0
  20. {honeybee_grasshopper_radiance-1.35.2.dist-info → honeybee_grasshopper_radiance-1.35.4.dist-info}/licenses/LICENSE +0 -0
  21. {honeybee_grasshopper_radiance-1.35.2.dist-info → honeybee_grasshopper_radiance-1.35.4.dist-info}/top_level.txt +0 -0
@@ -46,7 +46,7 @@ hour/timestep of the simulation.
46
46
 
47
47
  ghenv.Component.Name = 'HB Annual Average Values'
48
48
  ghenv.Component.NickName = 'AvgValues'
49
- ghenv.Component.Message = '1.9.0'
49
+ ghenv.Component.Message = '1.9.1'
50
50
  ghenv.Component.Category = 'HB-Radiance'
51
51
  ghenv.Component.SubCategory = '4 :: Results'
52
52
  ghenv.Component.AdditionalHelpFromDocStrings = '2'
@@ -161,9 +161,9 @@ if all_required_inputs(ghenv.Component):
161
161
  process = subprocess.Popen(
162
162
  cmds, cwd=res_folder, shell=use_shell, env=custom_env,
163
163
  stdout=subprocess.PIPE, stderr=subprocess.PIPE)
164
- stdout = process.communicate() # wait for the process to finish
165
- if stdout[-1] != '':
166
- print(stdout[-1])
164
+ stdout, stderr = process.communicate() # wait for the process to finish
165
+ if process.returncode != 0:
166
+ print(stderr)
167
167
  raise ValueError('Failed to compute {} values.'.format(res_type))
168
168
  res_dir = os.path.join(res_folder, 'metrics', '{}_values'.format(res_type))
169
169
  if os.path.isdir(res_dir):
@@ -44,7 +44,7 @@ hour/timestep of the simulation.
44
44
 
45
45
  ghenv.Component.Name = 'HB Annual Cumulative Values'
46
46
  ghenv.Component.NickName = 'CumulValues'
47
- ghenv.Component.Message = '1.9.0'
47
+ ghenv.Component.Message = '1.9.1'
48
48
  ghenv.Component.Category = 'HB-Radiance'
49
49
  ghenv.Component.SubCategory = '4 :: Results'
50
50
  ghenv.Component.AdditionalHelpFromDocStrings = '2'
@@ -151,9 +151,9 @@ if all_required_inputs(ghenv.Component):
151
151
  process = subprocess.Popen(
152
152
  cmds, cwd=res_folder, shell=use_shell, env=custom_env,
153
153
  stdout=subprocess.PIPE, stderr=subprocess.PIPE)
154
- stdout = process.communicate() # wait for the process to finish
155
- if stdout[-1] != '':
156
- print(stdout[-1])
154
+ stdout, stderr = process.communicate() # wait for the process to finish
155
+ if process.returncode != 0:
156
+ print(stderr)
157
157
  raise ValueError('Failed to compute cumulative values.')
158
158
  avg_dir = os.path.join(res_folder, 'metrics', 'cumulative_values')
159
159
  if os.path.isdir(avg_dir):
@@ -65,7 +65,7 @@ Calculate Annual Daylight Metrics from a result (.ill) files.
65
65
 
66
66
  ghenv.Component.Name = "HB Annual Daylight Metrics"
67
67
  ghenv.Component.NickName = 'DaylightMetrics'
68
- ghenv.Component.Message = '1.9.0'
68
+ ghenv.Component.Message = '1.9.1'
69
69
  ghenv.Component.Category = 'HB-Radiance'
70
70
  ghenv.Component.SubCategory = '4 :: Results'
71
71
  ghenv.Component.AdditionalHelpFromDocStrings = '1'
@@ -184,9 +184,9 @@ if all_required_inputs(ghenv.Component):
184
184
  process = subprocess.Popen(
185
185
  cmds, cwd=res_folder, shell=use_shell, env=custom_env,
186
186
  stdout=subprocess.PIPE, stderr=subprocess.PIPE)
187
- stdout = process.communicate() # wait for the process to finish
188
- if stdout[-1] != '':
189
- print(stdout[-1])
187
+ stdout, stderr = process.communicate() # wait for the process to finish
188
+ if process.returncode != 0:
189
+ print(stderr)
190
190
  raise ValueError('Failed to compute annual daylight metrics.')
191
191
  metric_dir = os.path.join(res_folder, 'metrics')
192
192
  DA = list_to_data_tree(read_da_from_folder(os.path.join(metric_dir, 'da')))
@@ -50,7 +50,7 @@ hour/timestep of the simulation.
50
50
 
51
51
  ghenv.Component.Name = 'HB Annual Peak Values'
52
52
  ghenv.Component.NickName = 'PeakValues'
53
- ghenv.Component.Message = '1.9.0'
53
+ ghenv.Component.Message = '1.9.1'
54
54
  ghenv.Component.Category = 'HB-Radiance'
55
55
  ghenv.Component.SubCategory = '4 :: Results'
56
56
  ghenv.Component.AdditionalHelpFromDocStrings = '2'
@@ -173,9 +173,9 @@ if all_required_inputs(ghenv.Component):
173
173
  process = subprocess.Popen(
174
174
  cmds, cwd=res_folder, shell=use_shell, env=custom_env,
175
175
  stdout=subprocess.PIPE, stderr=subprocess.PIPE)
176
- stdout = process.communicate() # wait for the process to finish
177
- if stdout[-1] != '':
178
- print(stdout[-1])
176
+ stdout, stderr = process.communicate() # wait for the process to finish
177
+ if process.returncode != 0:
178
+ print(stderr)
179
179
  raise ValueError('Failed to compute peak values.')
180
180
  avg_dir = os.path.join(res_folder, 'metrics', 'peak_values')
181
181
  if os.path.isdir(avg_dir):
@@ -45,7 +45,7 @@ deconstructed for detailed analysis with native Grasshopper math components.
45
45
 
46
46
  ghenv.Component.Name = 'HB Annual Results to Data'
47
47
  ghenv.Component.NickName = 'AnnualToData'
48
- ghenv.Component.Message = '1.9.0'
48
+ ghenv.Component.Message = '1.9.1'
49
49
  ghenv.Component.Category = 'HB-Radiance'
50
50
  ghenv.Component.SubCategory = '4 :: Results'
51
51
  ghenv.Component.AdditionalHelpFromDocStrings = '2'
@@ -196,7 +196,7 @@ if all_required_inputs(ghenv.Component):
196
196
  cmds, cwd=res_folder, shell=use_shell, env=custom_env,
197
197
  stdout=subprocess.PIPE, stderr=subprocess.PIPE)
198
198
  stdout, stderr = process.communicate() # wait for the process to finish
199
- if stderr != '':
199
+ if process.returncode != 0:
200
200
  print(stderr)
201
201
  raise ValueError('Failed to compute data collections.')
202
202
  data_dicts = json.loads(stdout)
@@ -0,0 +1,187 @@
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
+ Calculate typical statistics (Average, median, minimum, maximum, sum) for an
12
+ annual daylight or irradiance simulation.
13
+
14
+ Statistics can either be computed per sensor or per timestep.
15
+
16
+ -
17
+ Args:
18
+ _results: An list of annual Radiance result files from the "HB Annual Daylight"
19
+ component (containing the .ill files and the sun-up-hours.txt).
20
+ This can also be just the path to the folder containing these
21
+ result files.
22
+ dyn_sch_: Optional dynamic Aperture Group Schedules from the "HB Aperture Group
23
+ Schedule" component, which will be used to customize the behavior
24
+ of any dyanmic aperture geometry in the output metrics. If unsupplied,
25
+ all dynamic aperture groups will be in their default state in for
26
+ the output metrics.
27
+ _hoys_: An optional numbers or list of numbers to select the hours of the year (HOYs)
28
+ for which results will be computed. These HOYs can be obtained from the
29
+ "LB Calculate HOY" or the "LB Analysis Period" components. If None, all
30
+ hours of the results will be used.
31
+ grid_filter_: The name of a grid or a pattern to filter the grids. For instance,
32
+ first_floor_* will simulate only the sensor grids that have an
33
+ identifier that starts with first_floor_. By default all the grids
34
+ will be processed.
35
+ per_timestep_: Set to True to calculate statistics per-timestep instead of per-sensor.
36
+ (Default: False)
37
+
38
+ Returns:
39
+ report: Reports, errors, warnings, etc.
40
+ average: Average illuminance or irradiance values for each sensor or timestep
41
+ in lux or W/m2. This is either a list of values or a list of data collections
42
+ if per_timestep_ is True.
43
+ median: Median illuminance or irradiance values for each sensor or timestep
44
+ in lux or W/m2. This is either a list of values or a list of data collections
45
+ if per_timestep_ is True.
46
+ minimum: Minimum illuminance or irradiance values for each sensor or timestep
47
+ in lux or W/m2. This is either a list of values or a list of data collections
48
+ if per_timestep_ is True.
49
+ maximum: Maximum illuminance or irradiance values for each sensor or timestep
50
+ in lux or W/m2. This is either a list of values or a list of data collections
51
+ if per_timestep_ is True.
52
+ cumulative: Cumulative illuminance or irradiance values for each sensor or timestep
53
+ in lux or W/m2. This is either a list of values or a list of data collections
54
+ if per_timestep_ is True.
55
+ """
56
+
57
+ ghenv.Component.Name = "HB Annual Statistics"
58
+ ghenv.Component.NickName = 'AnnualStatistics'
59
+ ghenv.Component.Message = '1.9.1'
60
+ ghenv.Component.Category = 'HB-Radiance'
61
+ ghenv.Component.SubCategory = '4 :: Results'
62
+ ghenv.Component.AdditionalHelpFromDocStrings = '2'
63
+
64
+ import os
65
+ import json
66
+ import subprocess
67
+
68
+ try:
69
+ from ladybug.datacollection import HourlyContinuousCollection
70
+ from ladybug.futil import write_to_file
71
+ except ImportError as e:
72
+ raise ImportError('\nFailed to import ladybug:\n\t{}'.format(e))
73
+
74
+ try:
75
+ from honeybee.config import folders
76
+ except ImportError as e:
77
+ raise ImportError('\nFailed to import honeybee:\n\t{}'.format(e))
78
+
79
+ try:
80
+ from honeybee_radiance_postprocess.dynamic import DynamicSchedule
81
+ except ImportError as e:
82
+ raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
83
+
84
+ try:
85
+ from pollination_handlers.outputs.helper import read_sensor_grid_result
86
+ except ImportError as e:
87
+ raise ImportError('\nFailed to import pollination_handlers:\n\t{}'.format(e))
88
+
89
+ try:
90
+ from ladybug_rhino.grasshopper import all_required_inputs, list_to_data_tree, \
91
+ give_warning
92
+ except ImportError as e:
93
+ raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
94
+
95
+
96
+ if all_required_inputs(ghenv.Component):
97
+ # compute the annual summary
98
+ grid_filter_ = '*' if grid_filter_ is None else grid_filter_
99
+ res_folder = _results
100
+ per_timestep = False if per_timestep_ is None else per_timestep_
101
+
102
+ # check to see if results use the newer numpy arrays
103
+ if os.path.isdir(os.path.join(res_folder, '__static_apertures__')) or \
104
+ os.path.isfile(os.path.join(res_folder, 'grid_states.json')):
105
+ cmds = [folders.python_exe_path, '-m', 'honeybee_radiance_postprocess',
106
+ 'post-process', 'annual-statistics', res_folder, '-sf',
107
+ 'statistics']
108
+ if len(_hoys_) != 0:
109
+ hoys_str = '\n'.join(str(h) for h in _hoys_)
110
+ hoys_file = os.path.join(res_folder, 'hoys.txt')
111
+ write_to_file(hoys_file, hoys_str)
112
+ cmds.extend(['--hoys-file', hoys_file])
113
+ if grid_filter_ != '*':
114
+ cmds.extend(['--grids-filter', grid_filter_])
115
+ if len(dyn_sch_) != 0:
116
+ if os.path.isfile(os.path.join(res_folder, 'grid_states.json')):
117
+ dyn_sch = dyn_sch_[0] if isinstance(dyn_sch_[0], DynamicSchedule) else \
118
+ DynamicSchedule.from_group_schedules(dyn_sch_)
119
+ dyn_sch_file = dyn_sch.to_json(folder=res_folder)
120
+ cmds.extend(['--states', dyn_sch_file])
121
+ else:
122
+ msg = 'No dynamic aperture groups were found in the Model.\n' \
123
+ 'The input dynamic schedules will be ignored.'
124
+ print(msg)
125
+ give_warning(ghenv.Component, msg)
126
+
127
+ if per_timestep:
128
+ cmds.extend(['--timestep'])
129
+
130
+ use_shell = True if os.name == 'nt' else False
131
+ custom_env = os.environ.copy()
132
+ custom_env['PYTHONHOME'] = ''
133
+ process = subprocess.Popen(
134
+ cmds, cwd=res_folder, shell=use_shell, env=custom_env,
135
+ stdout=subprocess.PIPE, stderr=subprocess.PIPE)
136
+ stdout, stderr = process.communicate() # wait for the process to finish
137
+ if process.returncode != 0:
138
+ print(stderr)
139
+ raise ValueError('Failed to compute annual statistics values.')
140
+
141
+ res_dir = os.path.join(res_folder, 'statistics')
142
+ average_values_dir = os.path.join(res_dir, 'average_values')
143
+ median_values_dir = os.path.join(res_dir, 'median_values')
144
+ minimum_values_dir = os.path.join(res_dir, 'minimum_values')
145
+ maximum_values_dir = os.path.join(res_dir, 'maximum_values')
146
+ cumulative_values_dir = os.path.join(res_dir, 'cumulative_values')
147
+
148
+ if per_timestep is False:
149
+ average = list_to_data_tree(read_sensor_grid_result(average_values_dir, 'average', 'full_id', False))
150
+ median = list_to_data_tree(read_sensor_grid_result(median_values_dir, 'median', 'full_id', False))
151
+ minimum = list_to_data_tree(read_sensor_grid_result(minimum_values_dir, 'minimum', 'full_id', False))
152
+ maximum = list_to_data_tree(read_sensor_grid_result(maximum_values_dir, 'maximum', 'full_id', False))
153
+ cumulative = list_to_data_tree(read_sensor_grid_result(cumulative_values_dir, 'cumulative', 'full_id', False))
154
+ else:
155
+ with open(os.path.join(average_values_dir, 'grids_info.json')) as json_file:
156
+ grids_info = json.load(json_file)
157
+ average = []
158
+ median = []
159
+ minimum = []
160
+ maximum = []
161
+ cumulative = []
162
+ for grid_info in grids_info:
163
+ with open(os.path.join(average_values_dir, '{}_average.json'.format(grid_info['full_id']))) as json_file:
164
+ data_dict = json.load(json_file)
165
+ average.append(HourlyContinuousCollection.from_dict(data_dict))
166
+ with open(os.path.join(median_values_dir, '{}_median.json'.format(grid_info['full_id']))) as json_file:
167
+ data_dict = json.load(json_file)
168
+ median.append(HourlyContinuousCollection.from_dict(data_dict))
169
+ with open(os.path.join(minimum_values_dir, '{}_minimum.json'.format(grid_info['full_id']))) as json_file:
170
+ data_dict = json.load(json_file)
171
+ minimum.append(HourlyContinuousCollection.from_dict(data_dict))
172
+ with open(os.path.join(maximum_values_dir, '{}_maximum.json'.format(grid_info['full_id']))) as json_file:
173
+ data_dict = json.load(json_file)
174
+ maximum.append(HourlyContinuousCollection.from_dict(data_dict))
175
+ with open(os.path.join(cumulative_values_dir, '{}_cumulative.json'.format(grid_info['full_id']))) as json_file:
176
+ data_dict = json.load(json_file)
177
+ cumulative.append(HourlyContinuousCollection.from_dict(data_dict))
178
+ average = list_to_data_tree(average)
179
+ median = list_to_data_tree(median)
180
+ minimum = list_to_data_tree(minimum)
181
+ maximum = list_to_data_tree(maximum)
182
+ cumulative = list_to_data_tree(cumulative)
183
+ else:
184
+ msg = 'Annual Statistics is only supported for Annual Daylight and Annual Irradiance ' \
185
+ 'simulations with NumPy arrays.'
186
+ print(msg)
187
+ give_warning(ghenv.Component, msg)
@@ -43,7 +43,7 @@ results with operable shading devices, then this output is NOT LEED compliant.
43
43
 
44
44
  ghenv.Component.Name = "HB Annual Sunlight Exposure"
45
45
  ghenv.Component.NickName = 'ASE'
46
- ghenv.Component.Message = '1.9.0'
46
+ ghenv.Component.Message = '1.9.1'
47
47
  ghenv.Component.Category = 'HB-Radiance'
48
48
  ghenv.Component.SubCategory = '4 :: Results'
49
49
  ghenv.Component.AdditionalHelpFromDocStrings = '1'
@@ -133,9 +133,9 @@ if all_required_inputs(ghenv.Component):
133
133
  process = subprocess.Popen(
134
134
  cmds, cwd=res_folder, shell=use_shell, env=custom_env,
135
135
  stdout=subprocess.PIPE, stderr=subprocess.PIPE)
136
- stdout = process.communicate() # wait for the process to finish
137
- if stdout[-1] != '':
138
- print(stdout[-1])
136
+ stdout, stderr = process.communicate() # wait for the process to finish
137
+ if process.returncode != 0:
138
+ print(stderr)
139
139
  raise ValueError('Failed to compute annual sunlight exposure.')
140
140
  metric_dir = os.path.join(res_folder, 'metrics')
141
141
  ASE = read_ase_from_folder(os.path.join(metric_dir, 'ase'))
@@ -72,7 +72,7 @@ illuminance setpoint everywhere in the room.
72
72
 
73
73
  ghenv.Component.Name = 'HB Daylight Control Schedule'
74
74
  ghenv.Component.NickName = 'DaylightSchedule'
75
- ghenv.Component.Message = '1.9.0'
75
+ ghenv.Component.Message = '1.9.1'
76
76
  ghenv.Component.Category = 'HB-Radiance'
77
77
  ghenv.Component.SubCategory = '4 :: Results'
78
78
  ghenv.Component.AdditionalHelpFromDocStrings = '1'
@@ -187,9 +187,9 @@ if all_required_inputs(ghenv.Component):
187
187
  process = subprocess.Popen(
188
188
  cmds, cwd=res_folder, shell=use_shell, env=custom_env,
189
189
  stdout=subprocess.PIPE, stderr=subprocess.PIPE)
190
- stdout = process.communicate() # wait for the process to finish
191
- if stdout[-1] != '':
192
- print(stdout[-1])
190
+ stdout, stderr = process.communicate() # wait for the process to finish
191
+ if process.returncode != 0:
192
+ print(stderr)
193
193
  raise ValueError('Failed to compute control schedule.')
194
194
  cntrl_dir = os.path.join(res_folder, 'schedules', 'control_schedules')
195
195
  if os.path.isdir(cntrl_dir):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: honeybee-grasshopper-radiance
3
- Version: 1.35.2
3
+ Version: 1.35.4
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
@@ -1,15 +1,16 @@
1
1
  honeybee_grasshopper_radiance/__init__.py,sha256=74_HUn2iNnsmqgDOBEsdshIz8qH76tyBFnJBrX-YtOI,351
2
2
  honeybee_grasshopper_radiance/src/HB Adjust HDR.py,sha256=lCmVr0W5pc6RuqWNlzfnHPU9AREnCvbdZXMUYkh-qt8,4288
3
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
4
+ honeybee_grasshopper_radiance/src/HB Annual Average Values.py,sha256=KgswQaZ0nD6Fm8KmDH5DgvEbxkJ_TfQlLv_AyxafLBM,9117
5
+ honeybee_grasshopper_radiance/src/HB Annual Cumulative Values.py,sha256=h5m65-xo7RHtk-X2SH-g9D-FD7tPh99PO9Y8d7759WI,8378
6
+ honeybee_grasshopper_radiance/src/HB Annual Daylight Metrics.py,sha256=3ia2bFTpDh6i-4Xmr6z5S3hZXjMhn82slFpr18e9CCI,10226
7
7
  honeybee_grasshopper_radiance/src/HB Annual Daylight.py,sha256=XxnvOYJKi3OK45Vc1iLDsPX3ZH89QlISZBUDj3yv7BA,9021
8
8
  honeybee_grasshopper_radiance/src/HB Annual Glare Metrics.py,sha256=Uu-aqGjt3jlI3QFlsCqN0JwCQOe5y9dWUH9GACD6S3s,6328
9
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
10
+ honeybee_grasshopper_radiance/src/HB Annual Peak Values.py,sha256=kbXZ0vWF4u-7CRAwuE_9GvDmy0M7W4C_aGelrdwXD7I,10013
11
+ honeybee_grasshopper_radiance/src/HB Annual Results to Data.py,sha256=OUahEfW-3XlGsYuA1XW2G3u6B31O4tvN6_lfT9E3DzE,11032
12
+ honeybee_grasshopper_radiance/src/HB Annual Statistics.py,sha256=-_E3gr_jfFKMKA8P1awYdfod7B5HcZa09-GKIf-S5Po,9540
13
+ honeybee_grasshopper_radiance/src/HB Annual Sunlight Exposure.py,sha256=9268bpgiuo9qoohjtt6-kvc2-g_XuFU0F69RIcCm6mc,6404
13
14
  honeybee_grasshopper_radiance/src/HB Aperture Group Schedule.py,sha256=nL0lSzHEDI9iBGRSJODFAC1xDPu-GxTNIxGKa4qu7a8,3052
14
15
  honeybee_grasshopper_radiance/src/HB Apply Face Modifier.py,sha256=Hl73JhJpvQR052x0TRjJvp0CQ84VwaBBeQijVw9QhWY,4475
15
16
  honeybee_grasshopper_radiance/src/HB Apply ModifierSet.py,sha256=rlFhjekZGR1yM7D7vHLN7zYnkCiAvWEmHkS_5xHprIo,2513
@@ -24,7 +25,7 @@ honeybee_grasshopper_radiance/src/HB Check Scene.py,sha256=zZCsWUVjfzneqMdsjD7QY
24
25
  honeybee_grasshopper_radiance/src/HB Climatebased Sky.py,sha256=mtBZ6BTv_holUcVDJKXrtDt65YHxZqxTVSHVtLzN3Ik,2838
25
26
  honeybee_grasshopper_radiance/src/HB Cumulative Radiation.py,sha256=co60vegFaNrMqttwULM3EwrEorBz_JGa0fOi82XhcYw,4954
26
27
  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 Control Schedule.py,sha256=ZxMPB9l71mVh_Ae6aUp_mYIlkcDNOyopWyVlgfAN1U0,10196
28
29
  honeybee_grasshopper_radiance/src/HB Daylight Factor.py,sha256=svl0mrYUeeAg0PXLeUYsze_ajsFtZXEifwVe5U3ag1w,3636
29
30
  honeybee_grasshopper_radiance/src/HB Deconstruct Modifier.py,sha256=L6fu4tiaviV1deX2dkqhwJakgT6QjP4xpHa1Yki28Xw,1527
30
31
  honeybee_grasshopper_radiance/src/HB Deconstruct ModifierSet Interior.py,sha256=oC1SiuVbqEuz03todgU5mxIa73IQvl1o-I4eVKcXcq8,2695
@@ -82,15 +83,16 @@ honeybee_grasshopper_radiance/src/HB Wea from Zhang-Huang.py,sha256=_wq8G1jiPgAb
82
83
  honeybee_grasshopper_radiance/src/__init__.py,sha256=vvjkuMcZSQQvmG068RMNsB0qce6k6_plH0Yl0UL82gY,59
83
84
  honeybee_grasshopper_radiance/user_objects/HB Adjust HDR.ghuser,sha256=MF-MAn-Jp2fzkTgAOcRcK1h2jRHYnIDAwE_iDahag3g,5396
84
85
  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
86
+ honeybee_grasshopper_radiance/user_objects/HB Annual Average Values.ghuser,sha256=AGt3g9xD8Ur_OjNzAn46L20q0Fak91roTvgQRSe2GLI,6578
87
+ honeybee_grasshopper_radiance/user_objects/HB Annual Cumulative Values.ghuser,sha256=76t2dhwCOnXJl5TORf21gi5RlptBJpcTGWEphxeASVQ,6422
88
+ honeybee_grasshopper_radiance/user_objects/HB Annual Daylight Metrics.ghuser,sha256=OSlEkH39QLgGAZ-XHp2E-G2sBmp81jYq9z1WldN8ybc,7483
88
89
  honeybee_grasshopper_radiance/user_objects/HB Annual Daylight.ghuser,sha256=_LX4e1V_VrbHhaRxB2WFI5G_RIUQcp6f8cUaJ2dlSoU,8230
89
90
  honeybee_grasshopper_radiance/user_objects/HB Annual Glare Metrics.ghuser,sha256=dGeeL4A_ozLE2tlkMVC8SDxJkXariyzwePQJuuVWciQ,6714
90
91
  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
92
+ honeybee_grasshopper_radiance/user_objects/HB Annual Peak Values.ghuser,sha256=d2tseEaJd6GMmwpze3YkEU0jTIVFxHzcfyDz0hBDqeg,7151
93
+ honeybee_grasshopper_radiance/user_objects/HB Annual Results to Data.ghuser,sha256=MWSS5qpfzImQ6pvod-3kniNtEXmenvDDXn19rtb5nC4,7173
94
+ honeybee_grasshopper_radiance/user_objects/HB Annual Statistics.ghuser,sha256=IgWdxo6BJ1vy6lU_V1u6iyjQbOKFttIJI_hcG6Jbs1w,6722
95
+ honeybee_grasshopper_radiance/user_objects/HB Annual Sunlight Exposure.ghuser,sha256=FNVT--StOch-mFBYOAwo9_JvVGqGZXlZ3_d4xXdgICM,5594
94
96
  honeybee_grasshopper_radiance/user_objects/HB Aperture Group Schedule.ghuser,sha256=7-tSPfPcf4DkuQGBv3MruJOnlffX8g0pf5_GRW1brHw,5178
95
97
  honeybee_grasshopper_radiance/user_objects/HB Apply Face Modifier.ghuser,sha256=tDRYfk6OGwxzvkilbeLX7QwY95W-l9sveozSc2Xb2Ys,4978
96
98
  honeybee_grasshopper_radiance/user_objects/HB Apply ModifierSet.ghuser,sha256=h6Rl3WsDjcFfmXC1br2vy1hj9s0KIC30PTz2bshyHN4,4565
@@ -105,7 +107,7 @@ honeybee_grasshopper_radiance/user_objects/HB Check Scene.ghuser,sha256=-NaaPRI7
105
107
  honeybee_grasshopper_radiance/user_objects/HB Climatebased Sky.ghuser,sha256=0LwG6Go0Hv10PwtRPLfw0KQZuB4nHylyPJ_VIvfXITs,4824
106
108
  honeybee_grasshopper_radiance/user_objects/HB Cumulative Radiation.ghuser,sha256=jLJs4NGD_2-lUmUhtYeRMW1hxZKG7D3mRV2oJKxBLeE,6254
107
109
  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
110
+ honeybee_grasshopper_radiance/user_objects/HB Daylight Control Schedule.ghuser,sha256=bzUmxi2MOhoFdQAacN02jwKcfx5pQ19jTiT_KRDE_98,7414
109
111
  honeybee_grasshopper_radiance/user_objects/HB Daylight Factor.ghuser,sha256=knatFkcHC0hAL5M4XZwy1kCLahKFdrYjtBHht_G7ivU,5510
110
112
  honeybee_grasshopper_radiance/user_objects/HB Deconstruct Modifier.ghuser,sha256=fFutDflIERHhgdtV8cW8IwzSxS4h9pZ4A5154PfNSSI,3999
111
113
  honeybee_grasshopper_radiance/user_objects/HB Deconstruct ModifierSet Interior.ghuser,sha256=CiQQNJ8jnUmoTLkR6OvDGw-sTfW43HfFS7KH7-8Udy8,4550
@@ -163,8 +165,8 @@ honeybee_grasshopper_radiance/user_objects/HB Wea From EPW.ghuser,sha256=PcjwWzO
163
165
  honeybee_grasshopper_radiance/user_objects/HB Wea From Tau Clear Sky.ghuser,sha256=du9nzM95d3uL2-1sf1fFll_QfRloVaL4Q_JGd7Nb5NI,5367
164
166
  honeybee_grasshopper_radiance/user_objects/HB Wea from Zhang-Huang.ghuser,sha256=9KMXIDn5sfhk0h4QfZoKfFuHvI6x0bXVDJ3Ozd2CWNg,4678
165
167
  honeybee_grasshopper_radiance/user_objects/__init__.py,sha256=7BOscRVupILqwFUBWP6nAsMNgNN8lXQPsQ_zYUvGEr8,50
166
- honeybee_grasshopper_radiance-1.35.2.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
167
- honeybee_grasshopper_radiance-1.35.2.dist-info/METADATA,sha256=8TYb6KCe8f2gnDYLNMyXCk-9Ve745Ka3iVCJJ6BuzIk,2879
168
- honeybee_grasshopper_radiance-1.35.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
169
- honeybee_grasshopper_radiance-1.35.2.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
170
- honeybee_grasshopper_radiance-1.35.2.dist-info/RECORD,,
168
+ honeybee_grasshopper_radiance-1.35.4.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
169
+ honeybee_grasshopper_radiance-1.35.4.dist-info/METADATA,sha256=9b14XCSSNdZGgeqWYV2-h17BcgjC3DRb_zCHthz_8c0,2879
170
+ honeybee_grasshopper_radiance-1.35.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
171
+ honeybee_grasshopper_radiance-1.35.4.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
172
+ honeybee_grasshopper_radiance-1.35.4.dist-info/RECORD,,