honeybee-grasshopper-radiance 1.35.4__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.
- honeybee_grasshopper_radiance/src/HB Annual Average Values.py +1 -1
- honeybee_grasshopper_radiance/src/HB Annual Cumulative Values.py +2 -2
- honeybee_grasshopper_radiance/src/HB Annual Daylight Metrics.py +2 -2
- honeybee_grasshopper_radiance/src/HB Annual Peak Values.py +2 -2
- honeybee_grasshopper_radiance/src/HB Annual Results to Data.py +2 -2
- honeybee_grasshopper_radiance/src/HB Annual Statistics.py +2 -2
- honeybee_grasshopper_radiance/src/HB Annual Sunlight Exposure.py +2 -2
- honeybee_grasshopper_radiance/user_objects/HB Annual Average Values.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Annual Cumulative Values.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Annual Daylight Metrics.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Annual Peak Values.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Annual Results to Data.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Annual Statistics.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Annual Sunlight Exposure.ghuser +0 -0
- {honeybee_grasshopper_radiance-1.35.4.dist-info → honeybee_grasshopper_radiance-1.35.5.dist-info}/METADATA +1 -1
- {honeybee_grasshopper_radiance-1.35.4.dist-info → honeybee_grasshopper_radiance-1.35.5.dist-info}/RECORD +19 -19
- {honeybee_grasshopper_radiance-1.35.4.dist-info → honeybee_grasshopper_radiance-1.35.5.dist-info}/WHEEL +0 -0
- {honeybee_grasshopper_radiance-1.35.4.dist-info → honeybee_grasshopper_radiance-1.35.5.dist-info}/licenses/LICENSE +0 -0
- {honeybee_grasshopper_radiance-1.35.4.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.
|
|
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'
|
|
@@ -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.
|
|
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'
|
|
@@ -152,8 +152,8 @@ if all_required_inputs(ghenv.Component):
|
|
|
152
152
|
cmds, cwd=res_folder, shell=use_shell, env=custom_env,
|
|
153
153
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
154
154
|
stdout, stderr = process.communicate() # wait for the process to finish
|
|
155
|
+
print(stderr)
|
|
155
156
|
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.
|
|
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'
|
|
@@ -185,8 +185,8 @@ if all_required_inputs(ghenv.Component):
|
|
|
185
185
|
cmds, cwd=res_folder, shell=use_shell, env=custom_env,
|
|
186
186
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
187
187
|
stdout, stderr = process.communicate() # wait for the process to finish
|
|
188
|
+
print(stderr)
|
|
188
189
|
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.
|
|
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'
|
|
@@ -174,8 +174,8 @@ if all_required_inputs(ghenv.Component):
|
|
|
174
174
|
cmds, cwd=res_folder, shell=use_shell, env=custom_env,
|
|
175
175
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
176
176
|
stdout, stderr = process.communicate() # wait for the process to finish
|
|
177
|
+
print(stderr)
|
|
177
178
|
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.
|
|
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
|
+
print(stderr)
|
|
199
200
|
if process.returncode != 0:
|
|
200
|
-
print(stderr)
|
|
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.
|
|
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'
|
|
@@ -134,8 +134,8 @@ if all_required_inputs(ghenv.Component):
|
|
|
134
134
|
cmds, cwd=res_folder, shell=use_shell, env=custom_env,
|
|
135
135
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
136
136
|
stdout, stderr = process.communicate() # wait for the process to finish
|
|
137
|
+
print(stderr)
|
|
137
138
|
if process.returncode != 0:
|
|
138
|
-
print(stderr)
|
|
139
139
|
raise ValueError('Failed to compute annual statistics values.')
|
|
140
140
|
|
|
141
141
|
res_dir = os.path.join(res_folder, 'statistics')
|
|
@@ -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.
|
|
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'
|
|
@@ -134,8 +134,8 @@ if all_required_inputs(ghenv.Component):
|
|
|
134
134
|
cmds, cwd=res_folder, shell=use_shell, env=custom_env,
|
|
135
135
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
136
136
|
stdout, stderr = process.communicate() # wait for the process to finish
|
|
137
|
+
print(stderr)
|
|
137
138
|
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'))
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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=
|
|
5
|
-
honeybee_grasshopper_radiance/src/HB Annual Cumulative Values.py,sha256=
|
|
6
|
-
honeybee_grasshopper_radiance/src/HB Annual Daylight Metrics.py,sha256=
|
|
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=
|
|
11
|
-
honeybee_grasshopper_radiance/src/HB Annual Results to Data.py,sha256=
|
|
12
|
-
honeybee_grasshopper_radiance/src/HB Annual Statistics.py,sha256
|
|
13
|
-
honeybee_grasshopper_radiance/src/HB Annual Sunlight Exposure.py,sha256=
|
|
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
|
|
@@ -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=
|
|
87
|
-
honeybee_grasshopper_radiance/user_objects/HB Annual Cumulative Values.ghuser,sha256=
|
|
88
|
-
honeybee_grasshopper_radiance/user_objects/HB Annual Daylight Metrics.ghuser,sha256=
|
|
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=
|
|
93
|
-
honeybee_grasshopper_radiance/user_objects/HB Annual Results to Data.ghuser,sha256=
|
|
94
|
-
honeybee_grasshopper_radiance/user_objects/HB Annual Statistics.ghuser,sha256=
|
|
95
|
-
honeybee_grasshopper_radiance/user_objects/HB Annual Sunlight Exposure.ghuser,sha256=
|
|
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
|
|
@@ -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.
|
|
169
|
-
honeybee_grasshopper_radiance-1.35.
|
|
170
|
-
honeybee_grasshopper_radiance-1.35.
|
|
171
|
-
honeybee_grasshopper_radiance-1.35.
|
|
172
|
-
honeybee_grasshopper_radiance-1.35.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|