openstudio-analysis 0.1.11 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/openstudio/analysis/translator/excel.rb +6 -3
- data/lib/openstudio/analysis/version.rb +1 -1
- data/lib/openstudio/templates/discrete_uncertain_variable.json.erb +4 -4
- data/lib/openstudio/templates/pivot_variable.json.erb +1 -0
- data/lib/openstudio/templates/static_variable.json.erb +2 -2
- data/lib/openstudio/templates/uncertain_variable.json.erb +1 -1
- data/spec/files/export/analysis/discrete_seed.json +91 -91
- data/spec/files/export/analysis/discrete_seed.zip +0 -0
- data/spec/files/export/analysis/output_vars.json +91 -91
- data/spec/files/export/analysis/output_vars.zip +0 -0
- data/spec/files/export/analysis/small_seed.json +83 -83
- data/spec/files/export/analysis/small_seed.zip +0 -0
- data/spec/openstudio/analysis/server_api_spec.rb +1 -1
- data/spec/openstudio/analysis/translator/excel_spec.rb +11 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b97d05c22286ea80b3cc548fd74542087ed760af
|
4
|
+
data.tar.gz: 3903c6767cbd66cd1eee17b64a55401dfc017dec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cd95c8d34e9769c6d4ec5da9b27c46559fa4693c6b3e31f0375724941c3b53dd8b344516ee24958fa55d9473357bf31fd47ea4723faf50f054679274a52751e
|
7
|
+
data.tar.gz: cf7a4e110ac6152d44a808d8b2eef0bc21e6de7fe747161845eeb16ad0414388575d2c1c776f2ec9a1bd662027bb9870476f0fcf96f8c1f138c930dd5cb97c47
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,13 @@ OpenStudio Analysis Gem Change Log
|
|
4
4
|
Version 0.1.11
|
5
5
|
-------------
|
6
6
|
|
7
|
+
* Add machine name to pivot variables
|
8
|
+
|
9
|
+
* Force generation of unique UUIDs
|
10
|
+
|
11
|
+
Version 0.1.11
|
12
|
+
-------------
|
13
|
+
|
7
14
|
* Add cluster name and openstudio server version
|
8
15
|
|
9
16
|
* Make the booleans in run_options actual booleans
|
@@ -595,7 +595,7 @@ module OpenStudio
|
|
595
595
|
icnt += 1
|
596
596
|
# puts "Parsing line: #{icnt}"
|
597
597
|
next if icnt <= 3 # skip the first 3 lines of the file
|
598
|
-
|
598
|
+
|
599
599
|
var = {}
|
600
600
|
var['display_name'] = row[0].strip
|
601
601
|
var['name'] = row[1]
|
@@ -603,9 +603,12 @@ module OpenStudio
|
|
603
603
|
var['objective_function'] = row[3].downcase == "true" ? true : false
|
604
604
|
if var['objective_function'] == true
|
605
605
|
@algorithm['objective_functions'] << var['name']
|
606
|
+
variable_index += 1
|
607
|
+
var['objective_function_index'] = variable_index
|
608
|
+
else
|
609
|
+
var['objective_function_index'] = nil
|
606
610
|
end
|
607
|
-
var['objective_function_target'] = row[4]
|
608
|
-
var['objective_function_index'] = variable_index
|
611
|
+
var['objective_function_target'] = row[4]
|
609
612
|
data['output_variables'] << var
|
610
613
|
end
|
611
614
|
|
@@ -4,8 +4,8 @@
|
|
4
4
|
"machine_name": "<%= @variable['machine_name'] %>",
|
5
5
|
"name": "<%= @variable['name'] %>",
|
6
6
|
"required": false,
|
7
|
-
"uuid": "
|
8
|
-
"version_uuid": "
|
7
|
+
"uuid": "<%= UUID.new.generate %>",
|
8
|
+
"version_uuid": "<%= UUID.new.generate %>"
|
9
9
|
},
|
10
10
|
"display_name": "<%= @variable['display_name'] %>",
|
11
11
|
"machine_name": "<%= @variable['machine_name'] %>",
|
@@ -24,9 +24,9 @@
|
|
24
24
|
],
|
25
25
|
"type": "discrete_uncertain"
|
26
26
|
},
|
27
|
-
"uuid": "
|
27
|
+
"uuid": "<%= UUID.new.generate %>",
|
28
28
|
"variable_type": "RubyContinuousVariable",
|
29
|
-
"version_uuid": "
|
29
|
+
"version_uuid": "<%= UUID.new.generate %>"
|
30
30
|
}
|
31
31
|
|
32
32
|
|
@@ -16,7 +16,7 @@
|
|
16
16
|
"relation_to_output_ADDME": "<%= @variable['relation_to_eui'] %>",
|
17
17
|
"static_value": <%= @variable['distribution']['static_value'].inspect %>,
|
18
18
|
"static_value_ADDME": <%= @variable['distribution']['static_value'].inspect %>,
|
19
|
-
"uuid": "
|
19
|
+
"uuid": "<%= UUID.new.generate %>",
|
20
20
|
"variable_type": "RubyContinuousVariable",
|
21
|
-
"version_uuid": "
|
21
|
+
"version_uuid": "<%= UUID.new.generate %>"
|
22
22
|
}
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"display_name": "<%= @variable['display_name'] %>",
|
4
4
|
"machine_name": "<%= @variable['machine_name'] %>",
|
5
5
|
"name": "<%= @variable['name'] %>",
|
6
|
-
"uuid": "
|
6
|
+
"uuid": "<%= UUID.new.generate %>",
|
7
7
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
8
8
|
},
|
9
9
|
"display_name": "<%= @variable['display_name'] %>",
|
@@ -26,64 +26,64 @@
|
|
26
26
|
"machine_name": "apply_the_measure_to_a_specific_space_type_or_to_the_entire_model.",
|
27
27
|
"name": "space_type",
|
28
28
|
"value": "*Entire Building*",
|
29
|
-
"uuid": "
|
30
|
-
"version_uuid": "
|
29
|
+
"uuid": "1aca2320-7676-0131-738c-2820663576f4",
|
30
|
+
"version_uuid": "1aca41e0-7676-0131-738d-2820663576f4"
|
31
31
|
},
|
32
32
|
{
|
33
33
|
"display_name": "Increase in Material and Installation Cost for Lighting per Floor Area (%).",
|
34
34
|
"machine_name": "increase_in_material_and_installation_cost_for_lighting_per_floor_area_(%).",
|
35
35
|
"name": "material_and_installation_cost",
|
36
36
|
"value": 0.0,
|
37
|
-
"uuid": "
|
38
|
-
"version_uuid": "
|
37
|
+
"uuid": "1acaf520-7676-0131-7392-2820663576f4",
|
38
|
+
"version_uuid": "1acb1780-7676-0131-7393-2820663576f4"
|
39
39
|
},
|
40
40
|
{
|
41
41
|
"display_name": "Increase in Demolition Costs for Lighting per Floor Area (%).",
|
42
42
|
"machine_name": "increase_in_demolition_costs_for_lighting_per_floor_area_(%).",
|
43
43
|
"name": "demolition_cost",
|
44
44
|
"value": 0.0,
|
45
|
-
"uuid": "
|
46
|
-
"version_uuid": "
|
45
|
+
"uuid": "1acb3db0-7676-0131-7394-2820663576f4",
|
46
|
+
"version_uuid": "1acb6070-7676-0131-7395-2820663576f4"
|
47
47
|
},
|
48
48
|
{
|
49
49
|
"display_name": "Years Until Costs Start (whole years).",
|
50
50
|
"machine_name": "years_until_costs_start_(whole_years).",
|
51
51
|
"name": "years_until_costs_start",
|
52
52
|
"value": 0,
|
53
|
-
"uuid": "
|
54
|
-
"version_uuid": "
|
53
|
+
"uuid": "1acb81b0-7676-0131-7396-2820663576f4",
|
54
|
+
"version_uuid": "1acb9ec0-7676-0131-7397-2820663576f4"
|
55
55
|
},
|
56
56
|
{
|
57
57
|
"display_name": "Demolition Costs Occur During Initial Construction?",
|
58
58
|
"machine_name": "demolition_costs_occur_during_initial_construction?",
|
59
59
|
"name": "demo_cost_initial_const",
|
60
60
|
"value": true,
|
61
|
-
"uuid": "
|
62
|
-
"version_uuid": "
|
61
|
+
"uuid": "1acbc1a0-7676-0131-7398-2820663576f4",
|
62
|
+
"version_uuid": "1acbe290-7676-0131-7399-2820663576f4"
|
63
63
|
},
|
64
64
|
{
|
65
65
|
"display_name": "Expected Life (whole years).",
|
66
66
|
"machine_name": "expected_life_(whole_years).",
|
67
67
|
"name": "expected_life",
|
68
68
|
"value": 15,
|
69
|
-
"uuid": "
|
70
|
-
"version_uuid": "
|
69
|
+
"uuid": "1acc07b0-7676-0131-739a-2820663576f4",
|
70
|
+
"version_uuid": "1acc25f0-7676-0131-739b-2820663576f4"
|
71
71
|
},
|
72
72
|
{
|
73
73
|
"display_name": "Increase O & M Costs for Lighting per Floor Area (%).",
|
74
74
|
"machine_name": "increase_o_&_m_costs_for_lighting_per_floor_area_(%).",
|
75
75
|
"name": "om_cost",
|
76
76
|
"value": 0.0,
|
77
|
-
"uuid": "
|
78
|
-
"version_uuid": "
|
77
|
+
"uuid": "1acc4680-7676-0131-739c-2820663576f4",
|
78
|
+
"version_uuid": "1acc6530-7676-0131-739d-2820663576f4"
|
79
79
|
},
|
80
80
|
{
|
81
81
|
"display_name": "O & M Frequency (whole years).",
|
82
82
|
"machine_name": "o_&_m_frequency_(whole_years).",
|
83
83
|
"name": "om_frequency",
|
84
84
|
"value": 1,
|
85
|
-
"uuid": "
|
86
|
-
"version_uuid": "
|
85
|
+
"uuid": "1acc8890-7676-0131-739e-2820663576f4",
|
86
|
+
"version_uuid": "1acca8c0-7676-0131-739f-2820663576f4"
|
87
87
|
}
|
88
88
|
],
|
89
89
|
"bcl_measure_directory": "./measures/reduce_lighting_loads_by_percentage",
|
@@ -91,14 +91,14 @@
|
|
91
91
|
"bcl_measure_class_name_ADDME": "ReduceLightingLoadsByPercentage",
|
92
92
|
"measure_definition_class_name_CHANGE_TO_ME": "ReduceLightingLoadsByPercentage",
|
93
93
|
"measure_definition_class_name": "ReduceLightingLoadsByPercentage",
|
94
|
-
"bcl_measure_uuid": "
|
95
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
96
|
-
"bcl_measure_version_uuid": "
|
97
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
94
|
+
"bcl_measure_uuid": "1ac90d10-7676-0131-7386-2820663576f4",
|
95
|
+
"measure_definition_uuid_CHANGE_TO_ME": "1ac96400-7676-0131-7387-2820663576f4",
|
96
|
+
"bcl_measure_version_uuid": "1ac98650-7676-0131-7388-2820663576f4",
|
97
|
+
"measure_definition_version_uuid_CHANGE_TO_ME": "1ac9a8d0-7676-0131-7389-2820663576f4",
|
98
98
|
"measure_type": "RubyMeasure",
|
99
99
|
"name": "reduce_lighting_loads_by_percentage",
|
100
100
|
"display_name": "Reduce Lighting Loads by Percentage",
|
101
|
-
"uuid": "
|
101
|
+
"uuid": "1ac9ce80-7676-0131-738a-2820663576f4",
|
102
102
|
"variables": [
|
103
103
|
{
|
104
104
|
"argument": {
|
@@ -106,8 +106,8 @@
|
|
106
106
|
"machine_name": "lighting_power_reduction",
|
107
107
|
"name": "lighting_power_reduction_percent",
|
108
108
|
"required": false,
|
109
|
-
"uuid": "
|
110
|
-
"version_uuid": "
|
109
|
+
"uuid": "1aca6bf0-7676-0131-738e-2820663576f4",
|
110
|
+
"version_uuid": "1aca8d90-7676-0131-738f-2820663576f4"
|
111
111
|
},
|
112
112
|
"display_name": "Lighting Power Reduction",
|
113
113
|
"machine_name": "lighting_power_reduction",
|
@@ -142,12 +142,12 @@
|
|
142
142
|
],
|
143
143
|
"type": "discrete_uncertain"
|
144
144
|
},
|
145
|
-
"uuid": "
|
145
|
+
"uuid": "1acab3b0-7676-0131-7390-2820663576f4",
|
146
146
|
"variable_type": "RubyContinuousVariable",
|
147
|
-
"version_uuid": "
|
147
|
+
"version_uuid": "1acad2c0-7676-0131-7391-2820663576f4"
|
148
148
|
}
|
149
149
|
],
|
150
|
-
"version_uuid": "
|
150
|
+
"version_uuid": "1ac9fcd0-7676-0131-738b-2820663576f4",
|
151
151
|
"workflow_index": 0,
|
152
152
|
"workflow_step_type": "Measure"
|
153
153
|
},
|
@@ -158,32 +158,32 @@
|
|
158
158
|
"machine_name": "apply_the_measure_to_a_specific_space_type_or_to_the_entire_model.",
|
159
159
|
"name": "space_type",
|
160
160
|
"value": "*Entire Building*",
|
161
|
-
"uuid": "
|
162
|
-
"version_uuid": "
|
161
|
+
"uuid": "1acd9780-7676-0131-73a6-2820663576f4",
|
162
|
+
"version_uuid": "1acdb880-7676-0131-73a7-2820663576f4"
|
163
163
|
},
|
164
164
|
{
|
165
165
|
"display_name": "Increase in Material and Installation Costs for Building per Affected Floor Area ($/ft^2).",
|
166
166
|
"machine_name": "increase_in_material_and_installation_costs_for_building_per_affected_floor_area_($/ft^2).",
|
167
167
|
"name": "material_and_installation_cost",
|
168
168
|
"value": 0.0,
|
169
|
-
"uuid": "
|
170
|
-
"version_uuid": "
|
169
|
+
"uuid": "1ace04e0-7676-0131-73a9-2820663576f4",
|
170
|
+
"version_uuid": "1ace21b0-7676-0131-73aa-2820663576f4"
|
171
171
|
},
|
172
172
|
{
|
173
173
|
"display_name": "O & M Costs for Construction per Affected Floor Area ($/ft^2).",
|
174
174
|
"machine_name": "o_&_m_costs_for_construction_per_affected_floor_area_($/ft^2).",
|
175
175
|
"name": "om_cost",
|
176
176
|
"value": 0.0,
|
177
|
-
"uuid": "
|
178
|
-
"version_uuid": "
|
177
|
+
"uuid": "1ace4280-7676-0131-73ab-2820663576f4",
|
178
|
+
"version_uuid": "1ace61c0-7676-0131-73ac-2820663576f4"
|
179
179
|
},
|
180
180
|
{
|
181
181
|
"display_name": "O & M Frequency (whole years).",
|
182
182
|
"machine_name": "o_&_m_frequency_(whole_years).",
|
183
183
|
"name": "om_frequency",
|
184
184
|
"value": 1,
|
185
|
-
"uuid": "
|
186
|
-
"version_uuid": "
|
185
|
+
"uuid": "1ace8750-7676-0131-73ad-2820663576f4",
|
186
|
+
"version_uuid": "1acea770-7676-0131-73ae-2820663576f4"
|
187
187
|
}
|
188
188
|
],
|
189
189
|
"bcl_measure_directory": "./measures/reduce_space_infiltration_by_percentage",
|
@@ -191,21 +191,21 @@
|
|
191
191
|
"bcl_measure_class_name_ADDME": "ReduceSpaceInfiltrationByPercentage",
|
192
192
|
"measure_definition_class_name_CHANGE_TO_ME": "ReduceSpaceInfiltrationByPercentage",
|
193
193
|
"measure_definition_class_name": "ReduceSpaceInfiltrationByPercentage",
|
194
|
-
"bcl_measure_uuid": "
|
195
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
196
|
-
"bcl_measure_version_uuid": "
|
197
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
194
|
+
"bcl_measure_uuid": "1acccff0-7676-0131-73a0-2820663576f4",
|
195
|
+
"measure_definition_uuid_CHANGE_TO_ME": "1accf0a0-7676-0131-73a1-2820663576f4",
|
196
|
+
"bcl_measure_version_uuid": "1acd0f20-7676-0131-73a2-2820663576f4",
|
197
|
+
"measure_definition_version_uuid_CHANGE_TO_ME": "1acd3740-7676-0131-73a3-2820663576f4",
|
198
198
|
"measure_type": "RubyMeasure",
|
199
199
|
"name": "reducespaceinfiltrationbypercentage",
|
200
200
|
"display_name": "ReduceSpaceInfiltrationByPercentage",
|
201
|
-
"uuid": "
|
201
|
+
"uuid": "1acd5550-7676-0131-73a4-2820663576f4",
|
202
202
|
"variables": [
|
203
203
|
{
|
204
204
|
"argument": {
|
205
205
|
"display_name": "Space Infiltration Power Reduction",
|
206
206
|
"machine_name": "space_infiltration_power_reduction",
|
207
207
|
"name": "space_infiltration_reduction_percent",
|
208
|
-
"uuid": "
|
208
|
+
"uuid": "1acde1b0-7676-0131-73a8-2820663576f4",
|
209
209
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
210
210
|
},
|
211
211
|
"display_name": "Space Infiltration Power Reduction",
|
@@ -243,7 +243,7 @@
|
|
243
243
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
244
244
|
}
|
245
245
|
],
|
246
|
-
"version_uuid": "
|
246
|
+
"version_uuid": "1acd7430-7676-0131-73a5-2820663576f4",
|
247
247
|
"workflow_index": 1,
|
248
248
|
"workflow_step_type": "Measure"
|
249
249
|
},
|
@@ -256,21 +256,21 @@
|
|
256
256
|
"bcl_measure_class_name_ADDME": "AdjustTheromstatSetpointsByDegrees",
|
257
257
|
"measure_definition_class_name_CHANGE_TO_ME": "AdjustTheromstatSetpointsByDegrees",
|
258
258
|
"measure_definition_class_name": "AdjustTheromstatSetpointsByDegrees",
|
259
|
-
"bcl_measure_uuid": "
|
260
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
261
|
-
"bcl_measure_version_uuid": "
|
262
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
259
|
+
"bcl_measure_uuid": "1acecc50-7676-0131-73af-2820663576f4",
|
260
|
+
"measure_definition_uuid_CHANGE_TO_ME": "1aceea30-7676-0131-73b0-2820663576f4",
|
261
|
+
"bcl_measure_version_uuid": "1acf1910-7676-0131-73b1-2820663576f4",
|
262
|
+
"measure_definition_version_uuid_CHANGE_TO_ME": "1acf39e0-7676-0131-73b2-2820663576f4",
|
263
263
|
"measure_type": "RubyMeasure",
|
264
264
|
"name": "adjust_thermostat_setpoints_by_degrees",
|
265
265
|
"display_name": "Adjust Thermostat Setpoints by Degrees",
|
266
|
-
"uuid": "
|
266
|
+
"uuid": "1acf59a0-7676-0131-73b3-2820663576f4",
|
267
267
|
"variables": [
|
268
268
|
{
|
269
269
|
"argument": {
|
270
270
|
"display_name": "Degrees Fahrenheit to Adjust Cooling Setpoint By.",
|
271
271
|
"machine_name": "degrees_fahrenheit_to_adjust_cooling_setpoint_by.",
|
272
272
|
"name": "cooling_adjustment",
|
273
|
-
"uuid": "
|
273
|
+
"uuid": "1acfa930-7676-0131-73b5-2820663576f4",
|
274
274
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
275
275
|
},
|
276
276
|
"display_name": "Degrees Fahrenheit to Adjust Cooling Setpoint By.",
|
@@ -312,7 +312,7 @@
|
|
312
312
|
"display_name": "Degrees Fahrenheit to Adjust heating Setpoint By.",
|
313
313
|
"machine_name": "degrees_fahrenheit_to_adjust_heating_setpoint_by.",
|
314
314
|
"name": "heating_adjustment",
|
315
|
-
"uuid": "
|
315
|
+
"uuid": "1acfd050-7676-0131-73b6-2820663576f4",
|
316
316
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
317
317
|
},
|
318
318
|
"display_name": "Degrees Fahrenheit to Adjust heating Setpoint By.",
|
@@ -355,8 +355,8 @@
|
|
355
355
|
"machine_name": "alter_design_day_thermostats?",
|
356
356
|
"name": "alter_design_days",
|
357
357
|
"required": false,
|
358
|
-
"uuid": "
|
359
|
-
"version_uuid": "
|
358
|
+
"uuid": "1acff940-7676-0131-73b7-2820663576f4",
|
359
|
+
"version_uuid": "1ad018d0-7676-0131-73b8-2820663576f4"
|
360
360
|
},
|
361
361
|
"display_name": "Alter Design Day Thermostats?",
|
362
362
|
"machine_name": "alter_design_day_thermostats?",
|
@@ -383,12 +383,12 @@
|
|
383
383
|
],
|
384
384
|
"type": "discrete_uncertain"
|
385
385
|
},
|
386
|
-
"uuid": "
|
386
|
+
"uuid": "1ad03860-7676-0131-73b9-2820663576f4",
|
387
387
|
"variable_type": "RubyContinuousVariable",
|
388
|
-
"version_uuid": "
|
388
|
+
"version_uuid": "1ad05970-7676-0131-73ba-2820663576f4"
|
389
389
|
}
|
390
390
|
],
|
391
|
-
"version_uuid": "
|
391
|
+
"version_uuid": "1acf7ce0-7676-0131-73b4-2820663576f4",
|
392
392
|
"workflow_index": 2,
|
393
393
|
"workflow_step_type": "Measure"
|
394
394
|
},
|
@@ -399,24 +399,24 @@
|
|
399
399
|
"machine_name": "increase_in_material_and_installation_costs_for_construction_per_area_used_($/ft^2).",
|
400
400
|
"name": "material_cost_increase_ip",
|
401
401
|
"value": 0.0,
|
402
|
-
"uuid": "
|
403
|
-
"version_uuid": "
|
402
|
+
"uuid": "1ad163c0-7676-0131-73c2-2820663576f4",
|
403
|
+
"version_uuid": "1ad18010-7676-0131-73c3-2820663576f4"
|
404
404
|
},
|
405
405
|
{
|
406
406
|
"display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).",
|
407
407
|
"machine_name": "one_time_retrofit_cost_to_add_insulation_to_construction_($/ft^2).",
|
408
408
|
"name": "one_time_retrofit_cost_ip",
|
409
409
|
"value": 0.0,
|
410
|
-
"uuid": "
|
411
|
-
"version_uuid": "
|
410
|
+
"uuid": "1ad1a050-7676-0131-73c4-2820663576f4",
|
411
|
+
"version_uuid": "1ad1bc50-7676-0131-73c5-2820663576f4"
|
412
412
|
},
|
413
413
|
{
|
414
414
|
"display_name": "Year to Incur One Time Retrofit Cost (whole years).",
|
415
415
|
"machine_name": "year_to_incur_one_time_retrofit_cost_(whole_years).",
|
416
416
|
"name": "years_until_retrofit_cost",
|
417
417
|
"value": 0,
|
418
|
-
"uuid": "
|
419
|
-
"version_uuid": "
|
418
|
+
"uuid": "1ad1e3c0-7676-0131-73c6-2820663576f4",
|
419
|
+
"version_uuid": "1ad202f0-7676-0131-73c7-2820663576f4"
|
420
420
|
}
|
421
421
|
],
|
422
422
|
"bcl_measure_directory": "./measures/increase_insulation_r_value_for_exterior_walls",
|
@@ -424,21 +424,21 @@
|
|
424
424
|
"bcl_measure_class_name_ADDME": "IncreaseInsulationRValueForExteriorWalls",
|
425
425
|
"measure_definition_class_name_CHANGE_TO_ME": "IncreaseInsulationRValueForExteriorWalls",
|
426
426
|
"measure_definition_class_name": "IncreaseInsulationRValueForExteriorWalls",
|
427
|
-
"bcl_measure_uuid": "
|
428
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
429
|
-
"bcl_measure_version_uuid": "
|
430
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
427
|
+
"bcl_measure_uuid": "1ad08020-7676-0131-73bb-2820663576f4",
|
428
|
+
"measure_definition_uuid_CHANGE_TO_ME": "1ad0a060-7676-0131-73bc-2820663576f4",
|
429
|
+
"bcl_measure_version_uuid": "1ad0be60-7676-0131-73bd-2820663576f4",
|
430
|
+
"measure_definition_version_uuid_CHANGE_TO_ME": "1ad0db00-7676-0131-73be-2820663576f4",
|
431
431
|
"measure_type": "RubyMeasure",
|
432
432
|
"name": "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value",
|
433
433
|
"display_name": "Set R-value of Insulation for Exterior Walls to a Specific Value",
|
434
|
-
"uuid": "
|
434
|
+
"uuid": "1ad0f800-7676-0131-73bf-2820663576f4",
|
435
435
|
"variables": [
|
436
436
|
{
|
437
437
|
"argument": {
|
438
438
|
"display_name": "Wall R Value",
|
439
439
|
"machine_name": "wall_r_value",
|
440
440
|
"name": "r_value",
|
441
|
-
"uuid": "
|
441
|
+
"uuid": "1ad13f90-7676-0131-73c1-2820663576f4",
|
442
442
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
443
443
|
},
|
444
444
|
"display_name": "Wall R Value",
|
@@ -476,7 +476,7 @@
|
|
476
476
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
477
477
|
}
|
478
478
|
],
|
479
|
-
"version_uuid": "
|
479
|
+
"version_uuid": "1ad11770-7676-0131-73c0-2820663576f4",
|
480
480
|
"workflow_index": 3,
|
481
481
|
"workflow_step_type": "Measure"
|
482
482
|
},
|
@@ -487,24 +487,24 @@
|
|
487
487
|
"machine_name": "increase_in_material_and_installation_costs_for_construction_per_area_used_($/ft^2).",
|
488
488
|
"name": "material_cost_increase_ip",
|
489
489
|
"value": 0.0,
|
490
|
-
"uuid": "
|
491
|
-
"version_uuid": "
|
490
|
+
"uuid": "1ad321b0-7676-0131-73cf-2820663576f4",
|
491
|
+
"version_uuid": "1ad341b0-7676-0131-73d0-2820663576f4"
|
492
492
|
},
|
493
493
|
{
|
494
494
|
"display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).",
|
495
495
|
"machine_name": "one_time_retrofit_cost_to_add_insulation_to_construction_($/ft^2).",
|
496
496
|
"name": "one_time_retrofit_cost_ip",
|
497
497
|
"value": 0.0,
|
498
|
-
"uuid": "
|
499
|
-
"version_uuid": "
|
498
|
+
"uuid": "1ad363e0-7676-0131-73d1-2820663576f4",
|
499
|
+
"version_uuid": "1ad38490-7676-0131-73d2-2820663576f4"
|
500
500
|
},
|
501
501
|
{
|
502
502
|
"display_name": "Year to Incur One Time Retrofit Cost (whole years).",
|
503
503
|
"machine_name": "year_to_incur_one_time_retrofit_cost_(whole_years).",
|
504
504
|
"name": "years_until_retrofit_cost",
|
505
505
|
"value": 0,
|
506
|
-
"uuid": "
|
507
|
-
"version_uuid": "
|
506
|
+
"uuid": "1ad3ad00-7676-0131-73d3-2820663576f4",
|
507
|
+
"version_uuid": "1ad3d410-7676-0131-73d4-2820663576f4"
|
508
508
|
}
|
509
509
|
],
|
510
510
|
"bcl_measure_directory": "./measures/increase_insulation_r_value_for_roofs",
|
@@ -512,21 +512,21 @@
|
|
512
512
|
"bcl_measure_class_name_ADDME": "IncreaseInsulationRValueForRoofs",
|
513
513
|
"measure_definition_class_name_CHANGE_TO_ME": "IncreaseInsulationRValueForRoofs",
|
514
514
|
"measure_definition_class_name": "IncreaseInsulationRValueForRoofs",
|
515
|
-
"bcl_measure_uuid": "
|
516
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
517
|
-
"bcl_measure_version_uuid": "
|
518
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
515
|
+
"bcl_measure_uuid": "1ad228d0-7676-0131-73c8-2820663576f4",
|
516
|
+
"measure_definition_uuid_CHANGE_TO_ME": "1ad25550-7676-0131-73c9-2820663576f4",
|
517
|
+
"bcl_measure_version_uuid": "1ad27380-7676-0131-73ca-2820663576f4",
|
518
|
+
"measure_definition_version_uuid_CHANGE_TO_ME": "1ad292b0-7676-0131-73cb-2820663576f4",
|
519
519
|
"measure_type": "RubyMeasure",
|
520
520
|
"name": "set_r_value_of_insulation_for_roofs_to_a_specific_value",
|
521
521
|
"display_name": "Set R-value of Insulation for Roofs to a Specific Value",
|
522
|
-
"uuid": "
|
522
|
+
"uuid": "1ad2b530-7676-0131-73cc-2820663576f4",
|
523
523
|
"variables": [
|
524
524
|
{
|
525
525
|
"argument": {
|
526
526
|
"display_name": "Roof R Value",
|
527
527
|
"machine_name": "roof_r_value",
|
528
528
|
"name": "r_value",
|
529
|
-
"uuid": "
|
529
|
+
"uuid": "1ad2fe10-7676-0131-73ce-2820663576f4",
|
530
530
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
531
531
|
},
|
532
532
|
"display_name": "Roof R Value",
|
@@ -564,7 +564,7 @@
|
|
564
564
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
565
565
|
}
|
566
566
|
],
|
567
|
-
"version_uuid": "
|
567
|
+
"version_uuid": "1ad2d730-7676-0131-73cd-2820663576f4",
|
568
568
|
"workflow_index": 4,
|
569
569
|
"workflow_step_type": "Measure"
|
570
570
|
},
|
@@ -575,8 +575,8 @@
|
|
575
575
|
"machine_name": "apply_the_measure_to_a_specific_space_type_or_to_the_entire_model.",
|
576
576
|
"name": "space_type",
|
577
577
|
"value": "*Entire Building*",
|
578
|
-
"uuid": "
|
579
|
-
"version_uuid": "
|
578
|
+
"uuid": "1ad4b8e0-7676-0131-73db-2820663576f4",
|
579
|
+
"version_uuid": "1ad4da70-7676-0131-73dc-2820663576f4"
|
580
580
|
}
|
581
581
|
],
|
582
582
|
"bcl_measure_directory": "./measures/reduce_ventilation_by_percentage",
|
@@ -584,14 +584,14 @@
|
|
584
584
|
"bcl_measure_class_name_ADDME": "ReduceVentilationByPercentage",
|
585
585
|
"measure_definition_class_name_CHANGE_TO_ME": "ReduceVentilationByPercentage",
|
586
586
|
"measure_definition_class_name": "ReduceVentilationByPercentage",
|
587
|
-
"bcl_measure_uuid": "
|
588
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
589
|
-
"bcl_measure_version_uuid": "
|
590
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
587
|
+
"bcl_measure_uuid": "1ad3ffe0-7676-0131-73d5-2820663576f4",
|
588
|
+
"measure_definition_uuid_CHANGE_TO_ME": "1ad41fd0-7676-0131-73d6-2820663576f4",
|
589
|
+
"bcl_measure_version_uuid": "1ad43dc0-7676-0131-73d7-2820663576f4",
|
590
|
+
"measure_definition_version_uuid_CHANGE_TO_ME": "1ad45b60-7676-0131-73d8-2820663576f4",
|
591
591
|
"measure_type": "RubyMeasure",
|
592
592
|
"name": "reduce_ventilation_by_percentage",
|
593
593
|
"display_name": "Reduce Ventilation By Percentage",
|
594
|
-
"uuid": "
|
594
|
+
"uuid": "1ad47910-7676-0131-73d9-2820663576f4",
|
595
595
|
"variables": [
|
596
596
|
{
|
597
597
|
"argument": {
|
@@ -599,8 +599,8 @@
|
|
599
599
|
"machine_name": "design_specification_outdoor_air_reduction_(%).",
|
600
600
|
"name": "design_spec_outdoor_air_reduction_percent",
|
601
601
|
"required": false,
|
602
|
-
"uuid": "
|
603
|
-
"version_uuid": "
|
602
|
+
"uuid": "1ad4ffc0-7676-0131-73dd-2820663576f4",
|
603
|
+
"version_uuid": "1ad51ba0-7676-0131-73de-2820663576f4"
|
604
604
|
},
|
605
605
|
"display_name": "Design Specification Outdoor Air Reduction (%).",
|
606
606
|
"machine_name": "design_specification_outdoor_air_reduction_(%).",
|
@@ -634,12 +634,12 @@
|
|
634
634
|
],
|
635
635
|
"type": "discrete_uncertain"
|
636
636
|
},
|
637
|
-
"uuid": "
|
637
|
+
"uuid": "1ad53a30-7676-0131-73df-2820663576f4",
|
638
638
|
"variable_type": "RubyContinuousVariable",
|
639
|
-
"version_uuid": "
|
639
|
+
"version_uuid": "1ad55ab0-7676-0131-73e0-2820663576f4"
|
640
640
|
}
|
641
641
|
],
|
642
|
-
"version_uuid": "
|
642
|
+
"version_uuid": "1ad49600-7676-0131-73da-2820663576f4",
|
643
643
|
"workflow_index": 5,
|
644
644
|
"workflow_step_type": "Measure"
|
645
645
|
}
|