openstudio-analysis 0.1.11 → 0.1.12

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 012a689f9bf233df7fe3b4be501f767957e59e1b
4
- data.tar.gz: 27f15a3639dff8a0a1fe3c820eabc77b20989ad6
3
+ metadata.gz: b97d05c22286ea80b3cc548fd74542087ed760af
4
+ data.tar.gz: 3903c6767cbd66cd1eee17b64a55401dfc017dec
5
5
  SHA512:
6
- metadata.gz: ab15fa60fe2550024153cc657f1d91e4662704a2edd07ee62c485ad0140b29192968f21bcb7d518cc2c7a0a8761a4bf66167899fb3816482e8e2d4d27f0d2b15
7
- data.tar.gz: 4ca3acacf965c8a19f3450a28ee8e5dfdaab7c358d218cc4d10f345234551d209bb1e1fd93f00e5f3a27271d43742d5a795c432a032f0c85b04c65f3cf8d5c4d
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
- variable_index += 1
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
 
@@ -1,5 +1,5 @@
1
1
  module OpenStudio
2
2
  module Analysis
3
- VERSION = "0.1.11"
3
+ VERSION = "0.1.12"
4
4
  end
5
5
  end
@@ -4,8 +4,8 @@
4
4
  "machine_name": "<%= @variable['machine_name'] %>",
5
5
  "name": "<%= @variable['name'] %>",
6
6
  "required": false,
7
- "uuid": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
8
- "version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
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": "d157d709-b83e-42bd-bd30-1bc3a7979672",
27
+ "uuid": "<%= UUID.new.generate %>",
28
28
  "variable_type": "RubyContinuousVariable",
29
- "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
29
+ "version_uuid": "<%= UUID.new.generate %>"
30
30
  }
31
31
 
32
32
 
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "argument": {
3
3
  "display_name": "<%= @variable['display_name'] %>",
4
+ "machine_name": "<%= @variable['machine_name'] %>",
4
5
  "name": "<%= @variable['name'] %>",
5
6
  "required": false,
6
7
  "uuid": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
@@ -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": "d157d709-b83e-42bd-bd30-1bc3a7979672",
19
+ "uuid": "<%= UUID.new.generate %>",
20
20
  "variable_type": "RubyContinuousVariable",
21
- "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
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": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
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": "07f74880-6dfc-0131-dbb5-14109fdf0b37",
30
- "version_uuid": "07f76270-6dfc-0131-dbb6-14109fdf0b37"
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": "07f78610-6dfc-0131-dbb7-14109fdf0b37",
38
- "version_uuid": "07f7a5e0-6dfc-0131-dbb8-14109fdf0b37"
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": "07f7c1c0-6dfc-0131-dbb9-14109fdf0b37",
46
- "version_uuid": "07f7dc60-6dfc-0131-dbba-14109fdf0b37"
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": "07f7f970-6dfc-0131-dbbb-14109fdf0b37",
54
- "version_uuid": "07f81230-6dfc-0131-dbbc-14109fdf0b37"
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": "07f82fe0-6dfc-0131-dbbd-14109fdf0b37",
62
- "version_uuid": "07f84d60-6dfc-0131-dbbe-14109fdf0b37"
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": "07f86e90-6dfc-0131-dbbf-14109fdf0b37",
70
- "version_uuid": "07f88a30-6dfc-0131-dbc0-14109fdf0b37"
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": "07f8aab0-6dfc-0131-dbc1-14109fdf0b37",
78
- "version_uuid": "07f8c7d0-6dfc-0131-dbc2-14109fdf0b37"
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": "07f8f350-6dfc-0131-dbc3-14109fdf0b37",
86
- "version_uuid": "07f919c0-6dfc-0131-dbc4-14109fdf0b37"
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": "07f63180-6dfc-0131-dbaf-14109fdf0b37",
95
- "measure_definition_uuid_CHANGE_TO_ME": "07f6b340-6dfc-0131-dbb0-14109fdf0b37",
96
- "bcl_measure_version_uuid": "07f6d0f0-6dfc-0131-dbb1-14109fdf0b37",
97
- "measure_definition_version_uuid_CHANGE_TO_ME": "07f6efe0-6dfc-0131-dbb2-14109fdf0b37",
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": "07f70e20-6dfc-0131-dbb3-14109fdf0b37",
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": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
110
- "version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
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": "d157d709-b83e-42bd-bd30-1bc3a7979672",
145
+ "uuid": "1acab3b0-7676-0131-7390-2820663576f4",
146
146
  "variable_type": "RubyContinuousVariable",
147
- "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
147
+ "version_uuid": "1acad2c0-7676-0131-7391-2820663576f4"
148
148
  }
149
149
  ],
150
- "version_uuid": "07f72b60-6dfc-0131-dbb4-14109fdf0b37",
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": "07f9f060-6dfc-0131-dbcb-14109fdf0b37",
162
- "version_uuid": "07fa0a60-6dfc-0131-dbcc-14109fdf0b37"
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": "07fa3680-6dfc-0131-dbcd-14109fdf0b37",
170
- "version_uuid": "07fa5ac0-6dfc-0131-dbce-14109fdf0b37"
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": "07fa7fc0-6dfc-0131-dbcf-14109fdf0b37",
178
- "version_uuid": "07fa9b60-6dfc-0131-dbd0-14109fdf0b37"
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": "07fac610-6dfc-0131-dbd1-14109fdf0b37",
186
- "version_uuid": "07fae0c0-6dfc-0131-dbd2-14109fdf0b37"
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": "07f93dc0-6dfc-0131-dbc5-14109fdf0b37",
195
- "measure_definition_uuid_CHANGE_TO_ME": "07f95870-6dfc-0131-dbc6-14109fdf0b37",
196
- "bcl_measure_version_uuid": "07f97860-6dfc-0131-dbc7-14109fdf0b37",
197
- "measure_definition_version_uuid_CHANGE_TO_ME": "07f99790-6dfc-0131-dbc8-14109fdf0b37",
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": "07f9b490-6dfc-0131-dbc9-14109fdf0b37",
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": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
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": "07f9cfe0-6dfc-0131-dbca-14109fdf0b37",
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": "07fb0510-6dfc-0131-dbd3-14109fdf0b37",
260
- "measure_definition_uuid_CHANGE_TO_ME": "07fb22d0-6dfc-0131-dbd4-14109fdf0b37",
261
- "bcl_measure_version_uuid": "07fb41f0-6dfc-0131-dbd5-14109fdf0b37",
262
- "measure_definition_version_uuid_CHANGE_TO_ME": "07fb5c30-6dfc-0131-dbd6-14109fdf0b37",
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": "07fb78c0-6dfc-0131-dbd7-14109fdf0b37",
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": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
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": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
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": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
359
- "version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
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": "d157d709-b83e-42bd-bd30-1bc3a7979672",
386
+ "uuid": "1ad03860-7676-0131-73b9-2820663576f4",
387
387
  "variable_type": "RubyContinuousVariable",
388
- "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
388
+ "version_uuid": "1ad05970-7676-0131-73ba-2820663576f4"
389
389
  }
390
390
  ],
391
- "version_uuid": "07fb9640-6dfc-0131-dbd8-14109fdf0b37",
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": "07fcc430-6dfc-0131-dbdf-14109fdf0b37",
403
- "version_uuid": "07fce100-6dfc-0131-dbe0-14109fdf0b37"
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": "07fcff60-6dfc-0131-dbe1-14109fdf0b37",
411
- "version_uuid": "07fd1930-6dfc-0131-dbe2-14109fdf0b37"
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": "07fd3620-6dfc-0131-dbe3-14109fdf0b37",
419
- "version_uuid": "07fd5780-6dfc-0131-dbe4-14109fdf0b37"
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": "07fbd890-6dfc-0131-dbd9-14109fdf0b37",
428
- "measure_definition_uuid_CHANGE_TO_ME": "07fbffb0-6dfc-0131-dbda-14109fdf0b37",
429
- "bcl_measure_version_uuid": "07fc1f50-6dfc-0131-dbdb-14109fdf0b37",
430
- "measure_definition_version_uuid_CHANGE_TO_ME": "07fc3fa0-6dfc-0131-dbdc-14109fdf0b37",
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": "07fc6ad0-6dfc-0131-dbdd-14109fdf0b37",
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": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
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": "07fc9490-6dfc-0131-dbde-14109fdf0b37",
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": "07fe2780-6dfc-0131-dbeb-14109fdf0b37",
491
- "version_uuid": "07fe43d0-6dfc-0131-dbec-14109fdf0b37"
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": "07fe63d0-6dfc-0131-dbed-14109fdf0b37",
499
- "version_uuid": "07fe82f0-6dfc-0131-dbee-14109fdf0b37"
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": "07fe9e30-6dfc-0131-dbef-14109fdf0b37",
507
- "version_uuid": "07fec500-6dfc-0131-dbf0-14109fdf0b37"
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": "07fd7a70-6dfc-0131-dbe5-14109fdf0b37",
516
- "measure_definition_uuid_CHANGE_TO_ME": "07fd9640-6dfc-0131-dbe6-14109fdf0b37",
517
- "bcl_measure_version_uuid": "07fdb250-6dfc-0131-dbe7-14109fdf0b37",
518
- "measure_definition_version_uuid_CHANGE_TO_ME": "07fdcf30-6dfc-0131-dbe8-14109fdf0b37",
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": "07fde9d0-6dfc-0131-dbe9-14109fdf0b37",
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": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
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": "07fe02b0-6dfc-0131-dbea-14109fdf0b37",
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": "07ffa070-6dfc-0131-dbf7-14109fdf0b37",
579
- "version_uuid": "07ffb990-6dfc-0131-dbf8-14109fdf0b37"
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": "07fee940-6dfc-0131-dbf1-14109fdf0b37",
588
- "measure_definition_uuid_CHANGE_TO_ME": "07ff06c0-6dfc-0131-dbf2-14109fdf0b37",
589
- "bcl_measure_version_uuid": "07ff2550-6dfc-0131-dbf3-14109fdf0b37",
590
- "measure_definition_version_uuid_CHANGE_TO_ME": "07ff4280-6dfc-0131-dbf4-14109fdf0b37",
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": "07ff5ec0-6dfc-0131-dbf5-14109fdf0b37",
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": "a0618d15-bb0b-4494-a72f-8ad628693a7e",
603
- "version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
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": "d157d709-b83e-42bd-bd30-1bc3a7979672",
637
+ "uuid": "1ad53a30-7676-0131-73df-2820663576f4",
638
638
  "variable_type": "RubyContinuousVariable",
639
- "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
639
+ "version_uuid": "1ad55ab0-7676-0131-73e0-2820663576f4"
640
640
  }
641
641
  ],
642
- "version_uuid": "07ff7f20-6dfc-0131-dbf6-14109fdf0b37",
642
+ "version_uuid": "1ad49600-7676-0131-73da-2820663576f4",
643
643
  "workflow_index": 5,
644
644
  "workflow_step_type": "Measure"
645
645
  }