File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 25
25
26
26
"""Alias for inputs that expect a measures input."""
27
27
measures_input = [
28
- InputAlias .list (
28
+ InputAlias .any (
29
29
name = 'measures' ,
30
30
description = 'An optional list of measures to apply to the OpenStudio model '
31
31
'upon export. Use the "HB Load Measure" component to load a measure into '
32
32
'Grasshopper and assign input arguments. Measures can be downloaded from the '
33
33
'NREL Building Components Library (BCL) at (https://bcl.nrel.gov/).' ,
34
- default = [] ,
34
+ default = '' ,
35
35
optional = True ,
36
36
platform = ['grasshopper' ],
37
37
handler = [
47
47
48
48
"""Alias for inputs that expect a IDF string input."""
49
49
idf_additional_strings_input = [
50
- InputAlias .list (
50
+ InputAlias .any (
51
51
name = 'add_str' ,
52
52
description = 'THIS OPTION IS JUST FOR ADVANCED USERS OF ENERGYPLUS. '
53
53
'An additional text string to be appended to the IDF before '
54
54
'simulation. The input should include complete EnergyPlus objects as a '
55
55
'single string following the IDF format. This input can be used to include '
56
56
'EnergyPlus objects that are not currently supported by honeybee.' ,
57
- default = [] ,
57
+ default = '' ,
58
58
platform = ['grasshopper' ],
59
59
handler = [
60
60
IOAliasHandler (
69
69
70
70
"""Alias for inputs that expect visualization variables."""
71
71
viz_variables_input = [
72
- InputAlias .list (
72
+ InputAlias .any (
73
73
name = 'viz_vars' ,
74
74
description = 'A list of text for EnergyPlus output variables to be visualized '
75
75
'on the geometry in an output HTML report. If unspecified, no report is '
76
76
'produced. For example, "Zone Air System Sensible Heating Rate".' ,
77
- default = [] ,
77
+ default = '' ,
78
78
platform = ['grasshopper' ],
79
79
handler = [
80
80
IOAliasHandler (
You can’t perform that action at this time.
0 commit comments