honeybee-grasshopper-radiance 1.35.3__py3-none-any.whl → 1.35.5__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 +3 -3
  6. honeybee_grasshopper_radiance/src/HB Annual Statistics.py +6 -6
  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.3.dist-info → honeybee_grasshopper_radiance-1.35.5.dist-info}/METADATA +1 -1
  18. {honeybee_grasshopper_radiance-1.35.3.dist-info → honeybee_grasshopper_radiance-1.35.5.dist-info}/RECORD +21 -21
  19. {honeybee_grasshopper_radiance-1.35.3.dist-info → honeybee_grasshopper_radiance-1.35.5.dist-info}/WHEEL +0 -0
  20. {honeybee_grasshopper_radiance-1.35.3.dist-info → honeybee_grasshopper_radiance-1.35.5.dist-info}/licenses/LICENSE +0 -0
  21. {honeybee_grasshopper_radiance-1.35.3.dist-info → honeybee_grasshopper_radiance-1.35.5.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.2'
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.2'
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
+ print(stderr)
156
+ if process.returncode != 0:
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.2'
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
+ print(stderr)
189
+ if process.returncode != 0:
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.2'
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
+ print(stderr)
178
+ if process.returncode != 0:
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.2'
49
49
  ghenv.Component.Category = 'HB-Radiance'
50
50
  ghenv.Component.SubCategory = '4 :: Results'
51
51
  ghenv.Component.AdditionalHelpFromDocStrings = '2'
@@ -196,8 +196,8 @@ 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 != '':
200
- print(stderr)
199
+ print(stderr)
200
+ if process.returncode != 0:
201
201
  raise ValueError('Failed to compute data collections.')
202
202
  data_dicts = json.loads(stdout)
203
203
  data = [[HourlyContinuousCollection.from_dict(d) for d in data]
@@ -56,7 +56,7 @@ Statistics can either be computed per sensor or per timestep.
56
56
 
57
57
  ghenv.Component.Name = "HB Annual Statistics"
58
58
  ghenv.Component.NickName = 'AnnualStatistics'
59
- ghenv.Component.Message = '1.9.0'
59
+ ghenv.Component.Message = '1.9.2'
60
60
  ghenv.Component.Category = 'HB-Radiance'
61
61
  ghenv.Component.SubCategory = '4 :: Results'
62
62
  ghenv.Component.AdditionalHelpFromDocStrings = '2'
@@ -133,10 +133,10 @@ 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])
139
- raise ValueError('Failed to compute {} values.'.format(res_type))
136
+ stdout, stderr = process.communicate() # wait for the process to finish
137
+ print(stderr)
138
+ if process.returncode != 0:
139
+ raise ValueError('Failed to compute annual statistics values.')
140
140
 
141
141
  res_dir = os.path.join(res_folder, 'statistics')
142
142
  average_values_dir = os.path.join(res_dir, 'average_values')
@@ -181,7 +181,7 @@ if all_required_inputs(ghenv.Component):
181
181
  maximum = list_to_data_tree(maximum)
182
182
  cumulative = list_to_data_tree(cumulative)
183
183
  else:
184
- msg = 'Summary is only only supported for Annual Daylight and Annual Irradiance ' \
184
+ msg = 'Annual Statistics is only supported for Annual Daylight and Annual Irradiance ' \
185
185
  'simulations with NumPy arrays.'
186
186
  print(msg)
187
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.2'
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
+ print(stderr)
138
+ if process.returncode != 0:
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.3
3
+ Version: 1.35.5
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,16 +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=pcD-wMhox8iXrWNbRY5pcFJmOHW8287T4o5_mzmGEko,9117
5
+ honeybee_grasshopper_radiance/src/HB Annual Cumulative Values.py,sha256=cOCgZQKgc7JOBac5_qXUmhpYrOz7oIUvymus9v7gfq4,8374
6
+ honeybee_grasshopper_radiance/src/HB Annual Daylight Metrics.py,sha256=0f5JZHnZZZRhhJnwhSj5wb7eP_f3XT2dG153Lzv0a4E,10222
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 Statistics.py,sha256=HGDZuvqHjjv77yA0HDjYdYESoXEQ5XRqkDE6498b1YQ,9526
13
- 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=4qamwX2V23iHHBO77s6-heT7Cn8-Ak7XUDvzcO8EG90,10009
11
+ honeybee_grasshopper_radiance/src/HB Annual Results to Data.py,sha256=RMHK0grY7ra4x682C_d68z2dl1wtkU43fKgltOjtgJI,11028
12
+ honeybee_grasshopper_radiance/src/HB Annual Statistics.py,sha256=m8iuFHGKuYC7rrN-9UkN11jnrsQb8ArAn9qDLqHyMF8,9536
13
+ honeybee_grasshopper_radiance/src/HB Annual Sunlight Exposure.py,sha256=pQ5WTaU4lG_x8OIWS1xr4qvjXPvSQ8_1JzyDyKIH0HA,6400
14
14
  honeybee_grasshopper_radiance/src/HB Aperture Group Schedule.py,sha256=nL0lSzHEDI9iBGRSJODFAC1xDPu-GxTNIxGKa4qu7a8,3052
15
15
  honeybee_grasshopper_radiance/src/HB Apply Face Modifier.py,sha256=Hl73JhJpvQR052x0TRjJvp0CQ84VwaBBeQijVw9QhWY,4475
16
16
  honeybee_grasshopper_radiance/src/HB Apply ModifierSet.py,sha256=rlFhjekZGR1yM7D7vHLN7zYnkCiAvWEmHkS_5xHprIo,2513
@@ -25,7 +25,7 @@ honeybee_grasshopper_radiance/src/HB Check Scene.py,sha256=zZCsWUVjfzneqMdsjD7QY
25
25
  honeybee_grasshopper_radiance/src/HB Climatebased Sky.py,sha256=mtBZ6BTv_holUcVDJKXrtDt65YHxZqxTVSHVtLzN3Ik,2838
26
26
  honeybee_grasshopper_radiance/src/HB Cumulative Radiation.py,sha256=co60vegFaNrMqttwULM3EwrEorBz_JGa0fOi82XhcYw,4954
27
27
  honeybee_grasshopper_radiance/src/HB Custom Sky.py,sha256=3XWJ1eoC6GnxMj_PkthBOouFhHxZPYXKywQEByojyrg,2866
28
- 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
29
29
  honeybee_grasshopper_radiance/src/HB Daylight Factor.py,sha256=svl0mrYUeeAg0PXLeUYsze_ajsFtZXEifwVe5U3ag1w,3636
30
30
  honeybee_grasshopper_radiance/src/HB Deconstruct Modifier.py,sha256=L6fu4tiaviV1deX2dkqhwJakgT6QjP4xpHa1Yki28Xw,1527
31
31
  honeybee_grasshopper_radiance/src/HB Deconstruct ModifierSet Interior.py,sha256=oC1SiuVbqEuz03todgU5mxIa73IQvl1o-I4eVKcXcq8,2695
@@ -83,16 +83,16 @@ honeybee_grasshopper_radiance/src/HB Wea from Zhang-Huang.py,sha256=_wq8G1jiPgAb
83
83
  honeybee_grasshopper_radiance/src/__init__.py,sha256=vvjkuMcZSQQvmG068RMNsB0qce6k6_plH0Yl0UL82gY,59
84
84
  honeybee_grasshopper_radiance/user_objects/HB Adjust HDR.ghuser,sha256=MF-MAn-Jp2fzkTgAOcRcK1h2jRHYnIDAwE_iDahag3g,5396
85
85
  honeybee_grasshopper_radiance/user_objects/HB Ambient Resolution.ghuser,sha256=kTq5dWW8unIwKIun1CL1QYOXGhTw_ZGcFFSx2mpo3uY,4821
86
- honeybee_grasshopper_radiance/user_objects/HB Annual Average Values.ghuser,sha256=Dre1vM7hCzfyMkEWt6D6YVSwhMSDXhi6SDSGI50EK6w,6581
87
- honeybee_grasshopper_radiance/user_objects/HB Annual Cumulative Values.ghuser,sha256=1JENjyTSNPVYtvAQa8FpWEdXmNIz3Qe8Ow0OUxV78Js,6404
88
- 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=AekxPowFCen5bzwsz_ctKoBQ1VVqecEUWwEy0Ib6Q0U,6582
87
+ honeybee_grasshopper_radiance/user_objects/HB Annual Cumulative Values.ghuser,sha256=DBnuaIe91XvIn-6eGb5JcvcmI5evvJigfxUIJJBCn80,6424
88
+ honeybee_grasshopper_radiance/user_objects/HB Annual Daylight Metrics.ghuser,sha256=OZfwxH81PfVokmYoJJ02i58vDYwHPfLUUF04EzC2Zqs,7492
89
89
  honeybee_grasshopper_radiance/user_objects/HB Annual Daylight.ghuser,sha256=_LX4e1V_VrbHhaRxB2WFI5G_RIUQcp6f8cUaJ2dlSoU,8230
90
90
  honeybee_grasshopper_radiance/user_objects/HB Annual Glare Metrics.ghuser,sha256=dGeeL4A_ozLE2tlkMVC8SDxJkXariyzwePQJuuVWciQ,6714
91
91
  honeybee_grasshopper_radiance/user_objects/HB Annual Irradiance.ghuser,sha256=w1r_ZZqRwsjTv6hw06xjc86uD_-mCIO-y9rbQS09eL4,7347
92
- honeybee_grasshopper_radiance/user_objects/HB Annual Peak Values.ghuser,sha256=9OM0F7Po7CuKPbxLNIvh-G_IxDKddhdelIYaq6K7j8Y,7127
93
- honeybee_grasshopper_radiance/user_objects/HB Annual Results to Data.ghuser,sha256=bQ9T5VAVir1Cb7CynWMNmJSAz-bk6S57z0IwKILq6hs,7147
94
- honeybee_grasshopper_radiance/user_objects/HB Annual Statistics.ghuser,sha256=4IY2aovV99kob3iPTTlVgLJ9ZjFaY_sN2Y5ZX1OLomQ,6733
95
- 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=TxYU0ztANFKztEzbRWZsnErTw1YHL6DAIxvz9TK82Dc,7143
93
+ honeybee_grasshopper_radiance/user_objects/HB Annual Results to Data.ghuser,sha256=fNWVaQWte0QY67ZJAYKqi0nJLhjkyswhSQMo-wSbToI,7174
94
+ honeybee_grasshopper_radiance/user_objects/HB Annual Statistics.ghuser,sha256=R6CyT2ln3Vm42hJuGsiPkZOZR8U6I-giAnMjqM3keEQ,6717
95
+ honeybee_grasshopper_radiance/user_objects/HB Annual Sunlight Exposure.ghuser,sha256=JtL1QdmKN06C8H-wlopwgVu0uGYmN8KK85bC-1oL1ys,5594
96
96
  honeybee_grasshopper_radiance/user_objects/HB Aperture Group Schedule.ghuser,sha256=7-tSPfPcf4DkuQGBv3MruJOnlffX8g0pf5_GRW1brHw,5178
97
97
  honeybee_grasshopper_radiance/user_objects/HB Apply Face Modifier.ghuser,sha256=tDRYfk6OGwxzvkilbeLX7QwY95W-l9sveozSc2Xb2Ys,4978
98
98
  honeybee_grasshopper_radiance/user_objects/HB Apply ModifierSet.ghuser,sha256=h6Rl3WsDjcFfmXC1br2vy1hj9s0KIC30PTz2bshyHN4,4565
@@ -107,7 +107,7 @@ honeybee_grasshopper_radiance/user_objects/HB Check Scene.ghuser,sha256=-NaaPRI7
107
107
  honeybee_grasshopper_radiance/user_objects/HB Climatebased Sky.ghuser,sha256=0LwG6Go0Hv10PwtRPLfw0KQZuB4nHylyPJ_VIvfXITs,4824
108
108
  honeybee_grasshopper_radiance/user_objects/HB Cumulative Radiation.ghuser,sha256=jLJs4NGD_2-lUmUhtYeRMW1hxZKG7D3mRV2oJKxBLeE,6254
109
109
  honeybee_grasshopper_radiance/user_objects/HB Custom Sky.ghuser,sha256=k4GS_-McHDTTmjbxc1K87QnKHouXr4ZmQ2Cq5K_WvYQ,5380
110
- 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
111
111
  honeybee_grasshopper_radiance/user_objects/HB Daylight Factor.ghuser,sha256=knatFkcHC0hAL5M4XZwy1kCLahKFdrYjtBHht_G7ivU,5510
112
112
  honeybee_grasshopper_radiance/user_objects/HB Deconstruct Modifier.ghuser,sha256=fFutDflIERHhgdtV8cW8IwzSxS4h9pZ4A5154PfNSSI,3999
113
113
  honeybee_grasshopper_radiance/user_objects/HB Deconstruct ModifierSet Interior.ghuser,sha256=CiQQNJ8jnUmoTLkR6OvDGw-sTfW43HfFS7KH7-8Udy8,4550
@@ -165,8 +165,8 @@ honeybee_grasshopper_radiance/user_objects/HB Wea From EPW.ghuser,sha256=PcjwWzO
165
165
  honeybee_grasshopper_radiance/user_objects/HB Wea From Tau Clear Sky.ghuser,sha256=du9nzM95d3uL2-1sf1fFll_QfRloVaL4Q_JGd7Nb5NI,5367
166
166
  honeybee_grasshopper_radiance/user_objects/HB Wea from Zhang-Huang.ghuser,sha256=9KMXIDn5sfhk0h4QfZoKfFuHvI6x0bXVDJ3Ozd2CWNg,4678
167
167
  honeybee_grasshopper_radiance/user_objects/__init__.py,sha256=7BOscRVupILqwFUBWP6nAsMNgNN8lXQPsQ_zYUvGEr8,50
168
- honeybee_grasshopper_radiance-1.35.3.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
169
- honeybee_grasshopper_radiance-1.35.3.dist-info/METADATA,sha256=a6l_szw6CKFQ9-6QPyz4r6KPhFLNZ5FSO3rMDr1JV6A,2879
170
- honeybee_grasshopper_radiance-1.35.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
171
- honeybee_grasshopper_radiance-1.35.3.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
172
- honeybee_grasshopper_radiance-1.35.3.dist-info/RECORD,,
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,,