openstudio-analysis 0.1.9 → 0.1.10

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 (23) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/lib/openstudio/analysis/translator/excel.rb +5 -5
  4. data/lib/openstudio/analysis/version.rb +1 -1
  5. data/spec/files/export/analysis/discrete_seed.json +74 -74
  6. data/spec/files/export/analysis/discrete_seed.zip +0 -0
  7. data/spec/files/export/analysis/small_seed.json +76 -76
  8. data/spec/files/export/analysis/small_seed.zip +0 -0
  9. data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-create-a-new-localhost-instance.46.xml +9 -0
  10. data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-test-not-localhost.46.xml +9 -0
  11. data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi.46.xml +7 -0
  12. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-discrete-variables.4.xml +21 -0
  13. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-no-variables-defined.46.xml +20 -0
  14. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup-with-user.12.xml +9 -0
  15. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup.18.xml +9 -0
  16. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-setup-version-2.39.xml +21 -0
  17. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-incomplete-variables.46.xml +9 -0
  18. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables-should-not-validate.46.xml +9 -0
  19. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables.46.xml +24 -0
  20. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-with-with-repeated-variable-names.46.xml +9 -0
  21. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel.46.xml +7 -0
  22. metadata +27 -3
  23. data/spec/files/~$discrete_variables.xlsx +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bf35ab9a8a0994b36681b7aca40b9732215c8936
4
- data.tar.gz: adab227a18c1e87454e7a0fdbcd36fe8d4a1f4af
3
+ metadata.gz: c063b5657c75befc82e2d5a1c49e1cf0539e9726
4
+ data.tar.gz: 961cb0c4a6b7ccf53e6169d923c358fba57abe29
5
5
  SHA512:
6
- metadata.gz: 2011d0810cad424e912829e66f6cb36df01955c462632adf5b81e8a9916a8c77cef987b90c4d802ed33b41bea57d4a033aecd669d0c15fba7093e34a75d1f044
7
- data.tar.gz: 738e3216c29cb024d35ff18ef7cca0b680db447bb3c57d112c76e135bd082af834909d86167d7863f7ca1cbf559887a567dc55fd4444bb91125962889086d843
6
+ metadata.gz: 0d29a191923c94245b7d1bce9e91bd0f082802a54b3d96ada89aee009749b71bf89471740d05cbf482493208b0edad493e4840c71722e809e5af3532b6f6b893
7
+ data.tar.gz: 712c23f2a93578a7fd9e6d2f7de0a5a7805d1dab5c5b56b2eb7fad35b0b0f2c5c347b1daf65c886bbf6d4e4ca93a4e496e3d8c0f2fd6b244efa17124259537b7
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ OpenStudio Analysis Gem Change Log
4
4
  Version 0.1.9
5
5
  -------------
6
6
 
7
+ * Downcase checking of variable data types
8
+
9
+ Version 0.1.9
10
+ -------------
11
+
7
12
  * Clean up the "delete_mes" in the JSONs
8
13
 
9
14
  * Added discrete variables to the spreadsheet and bumped version
@@ -212,14 +212,14 @@ module OpenStudio
212
212
  end
213
213
 
214
214
  # add this as an argument
215
- case @variable['type']
216
- when "Double"
215
+ case @variable['type'].downcase
216
+ when "double"
217
217
  @static_value = @variable['distribution']['static_value'].to_f
218
- when "Integer"
218
+ when "integer"
219
219
  @static_value = @variable['distribution']['static_value'].to_i
220
- when "String", "Choice"
220
+ when "string", "choice"
221
221
  @static_value = @variable['distribution']['static_value'].inspect
222
- when "Bool"
222
+ when "bool"
223
223
  if @variable['distribution']['static_value'].downcase == "true"
224
224
  @static_value = true
225
225
  else
@@ -1,5 +1,5 @@
1
1
  module OpenStudio
2
2
  module Analysis
3
- VERSION = "0.1.9"
3
+ VERSION = "0.1.10"
4
4
  end
5
5
  end
@@ -20,64 +20,64 @@
20
20
  "machine_name": "apply_the_measure_to_a_specific_space_type_or_to_the_entire_model.",
21
21
  "name": "space_type",
22
22
  "value": "*Entire Building*",
23
- "uuid": "f0bd24f0-6ad3-0131-59f4-14109fdf0b37",
24
- "version_uuid": "f0bd4160-6ad3-0131-59f5-14109fdf0b37"
23
+ "uuid": "3f96bc70-6ad6-0131-5ad4-14109fdf0b37",
24
+ "version_uuid": "3f96de10-6ad6-0131-5ad5-14109fdf0b37"
25
25
  },
26
26
  {
27
27
  "display_name": "Increase in Material and Installation Cost for Lighting per Floor Area (%).",
28
28
  "machine_name": "increase_in_material_and_installation_cost_for_lighting_per_floor_area_(%).",
29
29
  "name": "material_and_installation_cost",
30
30
  "value": 0.0,
31
- "uuid": "f0bd6890-6ad3-0131-59f6-14109fdf0b37",
32
- "version_uuid": "f0bd8a30-6ad3-0131-59f7-14109fdf0b37"
31
+ "uuid": "3f970630-6ad6-0131-5ad6-14109fdf0b37",
32
+ "version_uuid": "3f972e50-6ad6-0131-5ad7-14109fdf0b37"
33
33
  },
34
34
  {
35
35
  "display_name": "Increase in Demolition Costs for Lighting per Floor Area (%).",
36
36
  "machine_name": "increase_in_demolition_costs_for_lighting_per_floor_area_(%).",
37
37
  "name": "demolition_cost",
38
38
  "value": 0.0,
39
- "uuid": "f0bdb050-6ad3-0131-59f8-14109fdf0b37",
40
- "version_uuid": "f0bdd140-6ad3-0131-59f9-14109fdf0b37"
39
+ "uuid": "3f975390-6ad6-0131-5ad8-14109fdf0b37",
40
+ "version_uuid": "3f977290-6ad6-0131-5ad9-14109fdf0b37"
41
41
  },
42
42
  {
43
43
  "display_name": "Years Until Costs Start (whole years).",
44
44
  "machine_name": "years_until_costs_start_(whole_years).",
45
45
  "name": "years_until_costs_start",
46
46
  "value": 0,
47
- "uuid": "f0bdedb0-6ad3-0131-59fa-14109fdf0b37",
48
- "version_uuid": "f0be0860-6ad3-0131-59fb-14109fdf0b37"
47
+ "uuid": "3f979400-6ad6-0131-5ada-14109fdf0b37",
48
+ "version_uuid": "3f97b0c0-6ad6-0131-5adb-14109fdf0b37"
49
49
  },
50
50
  {
51
51
  "display_name": "Demolition Costs Occur During Initial Construction?",
52
52
  "machine_name": "demolition_costs_occur_during_initial_construction?",
53
53
  "name": "demo_cost_initial_const",
54
54
  "value": true,
55
- "uuid": "f0be26e0-6ad3-0131-59fc-14109fdf0b37",
56
- "version_uuid": "f0be3fe0-6ad3-0131-59fd-14109fdf0b37"
55
+ "uuid": "3f97ce50-6ad6-0131-5adc-14109fdf0b37",
56
+ "version_uuid": "3f97ebd0-6ad6-0131-5add-14109fdf0b37"
57
57
  },
58
58
  {
59
59
  "display_name": "Expected Life (whole years).",
60
60
  "machine_name": "expected_life_(whole_years).",
61
61
  "name": "expected_life",
62
62
  "value": 15,
63
- "uuid": "f0be5af0-6ad3-0131-59fe-14109fdf0b37",
64
- "version_uuid": "f0be7be0-6ad3-0131-59ff-14109fdf0b37"
63
+ "uuid": "3f980f40-6ad6-0131-5ade-14109fdf0b37",
64
+ "version_uuid": "3f983350-6ad6-0131-5adf-14109fdf0b37"
65
65
  },
66
66
  {
67
67
  "display_name": "Increase O & M Costs for Lighting per Floor Area (%).",
68
68
  "machine_name": "increase_o_&_m_costs_for_lighting_per_floor_area_(%).",
69
69
  "name": "om_cost",
70
70
  "value": 0.0,
71
- "uuid": "f0be9ec0-6ad3-0131-5a00-14109fdf0b37",
72
- "version_uuid": "f0bebfa0-6ad3-0131-5a01-14109fdf0b37"
71
+ "uuid": "3f9850c0-6ad6-0131-5ae0-14109fdf0b37",
72
+ "version_uuid": "3f986cb0-6ad6-0131-5ae1-14109fdf0b37"
73
73
  },
74
74
  {
75
75
  "display_name": "O & M Frequency (whole years).",
76
76
  "machine_name": "o_&_m_frequency_(whole_years).",
77
77
  "name": "om_frequency",
78
78
  "value": 1,
79
- "uuid": "f0beec10-6ad3-0131-5a02-14109fdf0b37",
80
- "version_uuid": "f0bf0630-6ad3-0131-5a03-14109fdf0b37"
79
+ "uuid": "3f9888d0-6ad6-0131-5ae2-14109fdf0b37",
80
+ "version_uuid": "3f98a2c0-6ad6-0131-5ae3-14109fdf0b37"
81
81
  }
82
82
  ],
83
83
  "bcl_measure_directory": "./measures/reduce_lighting_loads_by_percentage",
@@ -85,14 +85,14 @@
85
85
  "bcl_measure_class_name_ADDME": "ReduceLightingLoadsByPercentage",
86
86
  "measure_definition_class_name_CHANGE_TO_ME": "ReduceLightingLoadsByPercentage",
87
87
  "measure_definition_class_name": "ReduceLightingLoadsByPercentage",
88
- "bcl_measure_uuid": "f0bc3090-6ad3-0131-59ee-14109fdf0b37",
89
- "measure_definition_uuid_CHANGE_TO_ME": "f0bc7d20-6ad3-0131-59ef-14109fdf0b37",
90
- "bcl_measure_version_uuid": "f0bc9f00-6ad3-0131-59f0-14109fdf0b37",
91
- "measure_definition_version_uuid_CHANGE_TO_ME": "f0bcc8f0-6ad3-0131-59f1-14109fdf0b37",
88
+ "bcl_measure_uuid": "3f95bc60-6ad6-0131-5ace-14109fdf0b37",
89
+ "measure_definition_uuid_CHANGE_TO_ME": "3f962bc0-6ad6-0131-5acf-14109fdf0b37",
90
+ "bcl_measure_version_uuid": "3f964860-6ad6-0131-5ad0-14109fdf0b37",
91
+ "measure_definition_version_uuid_CHANGE_TO_ME": "3f966530-6ad6-0131-5ad1-14109fdf0b37",
92
92
  "measure_type": "RubyMeasure",
93
93
  "name": "reduce_lighting_loads_by_percentage",
94
94
  "display_name": "Reduce Lighting Loads by Percentage",
95
- "uuid": "f0bce850-6ad3-0131-59f2-14109fdf0b37",
95
+ "uuid": "3f967e00-6ad6-0131-5ad2-14109fdf0b37",
96
96
  "variables": [
97
97
  {
98
98
  "argument": {
@@ -141,7 +141,7 @@
141
141
  "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
142
142
  }
143
143
  ],
144
- "version_uuid": "f0bd0530-6ad3-0131-59f3-14109fdf0b37",
144
+ "version_uuid": "3f9698c0-6ad6-0131-5ad3-14109fdf0b37",
145
145
  "workflow_index": 0,
146
146
  "workflow_step_type": "Measure"
147
147
  },
@@ -152,32 +152,32 @@
152
152
  "machine_name": "apply_the_measure_to_a_specific_space_type_or_to_the_entire_model.",
153
153
  "name": "space_type",
154
154
  "value": "*Entire Building*",
155
- "uuid": "f0c246e0-6ad3-0131-5a0a-14109fdf0b37",
156
- "version_uuid": "f0c26550-6ad3-0131-5a0b-14109fdf0b37"
155
+ "uuid": "3f998cb0-6ad6-0131-5aea-14109fdf0b37",
156
+ "version_uuid": "3f99a910-6ad6-0131-5aeb-14109fdf0b37"
157
157
  },
158
158
  {
159
159
  "display_name": "Increase in Material and Installation Costs for Building per Affected Floor Area ($/ft^2).",
160
160
  "machine_name": "increase_in_material_and_installation_costs_for_building_per_affected_floor_area_($/ft^2).",
161
161
  "name": "material_and_installation_cost",
162
162
  "value": 0.0,
163
- "uuid": "f0c28f80-6ad3-0131-5a0c-14109fdf0b37",
164
- "version_uuid": "f0c2b630-6ad3-0131-5a0d-14109fdf0b37"
163
+ "uuid": "3f99da20-6ad6-0131-5aec-14109fdf0b37",
164
+ "version_uuid": "3f9a0170-6ad6-0131-5aed-14109fdf0b37"
165
165
  },
166
166
  {
167
167
  "display_name": "O & M Costs for Construction per Affected Floor Area ($/ft^2).",
168
168
  "machine_name": "o_&_m_costs_for_construction_per_affected_floor_area_($/ft^2).",
169
169
  "name": "om_cost",
170
170
  "value": 0.0,
171
- "uuid": "f0c2d3e0-6ad3-0131-5a0e-14109fdf0b37",
172
- "version_uuid": "f0c2f090-6ad3-0131-5a0f-14109fdf0b37"
171
+ "uuid": "3f9a2280-6ad6-0131-5aee-14109fdf0b37",
172
+ "version_uuid": "3f9a3e70-6ad6-0131-5aef-14109fdf0b37"
173
173
  },
174
174
  {
175
175
  "display_name": "O & M Frequency (whole years).",
176
176
  "machine_name": "o_&_m_frequency_(whole_years).",
177
177
  "name": "om_frequency",
178
178
  "value": 1,
179
- "uuid": "f0c30e80-6ad3-0131-5a10-14109fdf0b37",
180
- "version_uuid": "f0c33250-6ad3-0131-5a11-14109fdf0b37"
179
+ "uuid": "3f9a5e00-6ad6-0131-5af0-14109fdf0b37",
180
+ "version_uuid": "3f9a7ca0-6ad6-0131-5af1-14109fdf0b37"
181
181
  }
182
182
  ],
183
183
  "bcl_measure_directory": "./measures/reduce_space_infiltration_by_percentage",
@@ -185,14 +185,14 @@
185
185
  "bcl_measure_class_name_ADDME": "ReduceSpaceInfiltrationByPercentage",
186
186
  "measure_definition_class_name_CHANGE_TO_ME": "ReduceSpaceInfiltrationByPercentage",
187
187
  "measure_definition_class_name": "ReduceSpaceInfiltrationByPercentage",
188
- "bcl_measure_uuid": "f0c18e70-6ad3-0131-5a04-14109fdf0b37",
189
- "measure_definition_uuid_CHANGE_TO_ME": "f0c1ad30-6ad3-0131-5a05-14109fdf0b37",
190
- "bcl_measure_version_uuid": "f0c1d0d0-6ad3-0131-5a06-14109fdf0b37",
191
- "measure_definition_version_uuid_CHANGE_TO_ME": "f0c1f270-6ad3-0131-5a07-14109fdf0b37",
188
+ "bcl_measure_uuid": "3f98c3e0-6ad6-0131-5ae4-14109fdf0b37",
189
+ "measure_definition_uuid_CHANGE_TO_ME": "3f98dee0-6ad6-0131-5ae5-14109fdf0b37",
190
+ "bcl_measure_version_uuid": "3f98fc50-6ad6-0131-5ae6-14109fdf0b37",
191
+ "measure_definition_version_uuid_CHANGE_TO_ME": "3f9923a0-6ad6-0131-5ae7-14109fdf0b37",
192
192
  "measure_type": "RubyMeasure",
193
193
  "name": "reducespaceinfiltrationbypercentage",
194
194
  "display_name": "ReduceSpaceInfiltrationByPercentage",
195
- "uuid": "f0c20ce0-6ad3-0131-5a08-14109fdf0b37",
195
+ "uuid": "3f994290-6ad6-0131-5ae8-14109fdf0b37",
196
196
  "variables": [
197
197
  {
198
198
  "argument": {
@@ -237,7 +237,7 @@
237
237
  "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
238
238
  }
239
239
  ],
240
- "version_uuid": "f0c22660-6ad3-0131-5a09-14109fdf0b37",
240
+ "version_uuid": "3f996c70-6ad6-0131-5ae9-14109fdf0b37",
241
241
  "workflow_index": 1,
242
242
  "workflow_step_type": "Measure"
243
243
  },
@@ -250,14 +250,14 @@
250
250
  "bcl_measure_class_name_ADDME": "AdjustTheromstatSetpointsByDegrees",
251
251
  "measure_definition_class_name_CHANGE_TO_ME": "AdjustTheromstatSetpointsByDegrees",
252
252
  "measure_definition_class_name": "AdjustTheromstatSetpointsByDegrees",
253
- "bcl_measure_uuid": "f0c35ba0-6ad3-0131-5a12-14109fdf0b37",
254
- "measure_definition_uuid_CHANGE_TO_ME": "f0c37860-6ad3-0131-5a13-14109fdf0b37",
255
- "bcl_measure_version_uuid": "f0c39620-6ad3-0131-5a14-14109fdf0b37",
256
- "measure_definition_version_uuid_CHANGE_TO_ME": "f0c3b240-6ad3-0131-5a15-14109fdf0b37",
253
+ "bcl_measure_uuid": "3f9aa330-6ad6-0131-5af2-14109fdf0b37",
254
+ "measure_definition_uuid_CHANGE_TO_ME": "3f9ac150-6ad6-0131-5af3-14109fdf0b37",
255
+ "bcl_measure_version_uuid": "3f9ae9a0-6ad6-0131-5af4-14109fdf0b37",
256
+ "measure_definition_version_uuid_CHANGE_TO_ME": "3f9b0910-6ad6-0131-5af5-14109fdf0b37",
257
257
  "measure_type": "RubyMeasure",
258
258
  "name": "adjust_thermostat_setpoints_by_degrees",
259
259
  "display_name": "Adjust Thermostat Setpoints by Degrees",
260
- "uuid": "f0c3d030-6ad3-0131-5a16-14109fdf0b37",
260
+ "uuid": "3f9b2830-6ad6-0131-5af6-14109fdf0b37",
261
261
  "variables": [
262
262
  {
263
263
  "argument": {
@@ -382,7 +382,7 @@
382
382
  "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
383
383
  }
384
384
  ],
385
- "version_uuid": "f0c3edb0-6ad3-0131-5a17-14109fdf0b37",
385
+ "version_uuid": "3f9b46a0-6ad6-0131-5af7-14109fdf0b37",
386
386
  "workflow_index": 2,
387
387
  "workflow_step_type": "Measure"
388
388
  },
@@ -393,24 +393,24 @@
393
393
  "machine_name": "increase_in_material_and_installation_costs_for_construction_per_area_used_($/ft^2).",
394
394
  "name": "material_cost_increase_ip",
395
395
  "value": 0.0,
396
- "uuid": "f0c4e860-6ad3-0131-5a1e-14109fdf0b37",
397
- "version_uuid": "f0c50500-6ad3-0131-5a1f-14109fdf0b37"
396
+ "uuid": "3f9c4390-6ad6-0131-5afe-14109fdf0b37",
397
+ "version_uuid": "3f9c5f00-6ad6-0131-5aff-14109fdf0b37"
398
398
  },
399
399
  {
400
400
  "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).",
401
401
  "machine_name": "one_time_retrofit_cost_to_add_insulation_to_construction_($/ft^2).",
402
402
  "name": "one_time_retrofit_cost_ip",
403
403
  "value": 0.0,
404
- "uuid": "f0c52070-6ad3-0131-5a20-14109fdf0b37",
405
- "version_uuid": "f0c539b0-6ad3-0131-5a21-14109fdf0b37"
404
+ "uuid": "3f9c7e70-6ad6-0131-5b00-14109fdf0b37",
405
+ "version_uuid": "3f9c9d30-6ad6-0131-5b01-14109fdf0b37"
406
406
  },
407
407
  {
408
408
  "display_name": "Year to Incur One Time Retrofit Cost (whole years).",
409
409
  "machine_name": "year_to_incur_one_time_retrofit_cost_(whole_years).",
410
410
  "name": "years_until_retrofit_cost",
411
411
  "value": 0,
412
- "uuid": "f0c55430-6ad3-0131-5a22-14109fdf0b37",
413
- "version_uuid": "f0c570f0-6ad3-0131-5a23-14109fdf0b37"
412
+ "uuid": "3f9cbd10-6ad6-0131-5b02-14109fdf0b37",
413
+ "version_uuid": "3f9cdad0-6ad6-0131-5b03-14109fdf0b37"
414
414
  }
415
415
  ],
416
416
  "bcl_measure_directory": "./measures/increase_insulation_r_value_for_exterior_walls",
@@ -418,14 +418,14 @@
418
418
  "bcl_measure_class_name_ADDME": "IncreaseInsulationRValueForExteriorWalls",
419
419
  "measure_definition_class_name_CHANGE_TO_ME": "IncreaseInsulationRValueForExteriorWalls",
420
420
  "measure_definition_class_name": "IncreaseInsulationRValueForExteriorWalls",
421
- "bcl_measure_uuid": "f0c425a0-6ad3-0131-5a18-14109fdf0b37",
422
- "measure_definition_uuid_CHANGE_TO_ME": "f0c44a20-6ad3-0131-5a19-14109fdf0b37",
423
- "bcl_measure_version_uuid": "f0c46540-6ad3-0131-5a1a-14109fdf0b37",
424
- "measure_definition_version_uuid_CHANGE_TO_ME": "f0c481e0-6ad3-0131-5a1b-14109fdf0b37",
421
+ "bcl_measure_uuid": "3f9b8960-6ad6-0131-5af8-14109fdf0b37",
422
+ "measure_definition_uuid_CHANGE_TO_ME": "3f9ba660-6ad6-0131-5af9-14109fdf0b37",
423
+ "bcl_measure_version_uuid": "3f9bc740-6ad6-0131-5afa-14109fdf0b37",
424
+ "measure_definition_version_uuid_CHANGE_TO_ME": "3f9be380-6ad6-0131-5afb-14109fdf0b37",
425
425
  "measure_type": "RubyMeasure",
426
426
  "name": "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value",
427
427
  "display_name": "Set R-value of Insulation for Exterior Walls to a Specific Value",
428
- "uuid": "f0c49cb0-6ad3-0131-5a1c-14109fdf0b37",
428
+ "uuid": "3f9bfe10-6ad6-0131-5afc-14109fdf0b37",
429
429
  "variables": [
430
430
  {
431
431
  "argument": {
@@ -470,7 +470,7 @@
470
470
  "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
471
471
  }
472
472
  ],
473
- "version_uuid": "f0c4bf00-6ad3-0131-5a1d-14109fdf0b37",
473
+ "version_uuid": "3f9c1af0-6ad6-0131-5afd-14109fdf0b37",
474
474
  "workflow_index": 3,
475
475
  "workflow_step_type": "Measure"
476
476
  },
@@ -481,24 +481,24 @@
481
481
  "machine_name": "increase_in_material_and_installation_costs_for_construction_per_area_used_($/ft^2).",
482
482
  "name": "material_cost_increase_ip",
483
483
  "value": 0.0,
484
- "uuid": "f0c63fd0-6ad3-0131-5a2a-14109fdf0b37",
485
- "version_uuid": "f0c65a70-6ad3-0131-5a2b-14109fdf0b37"
484
+ "uuid": "3f9da6a0-6ad6-0131-5b0a-14109fdf0b37",
485
+ "version_uuid": "3f9dc400-6ad6-0131-5b0b-14109fdf0b37"
486
486
  },
487
487
  {
488
488
  "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).",
489
489
  "machine_name": "one_time_retrofit_cost_to_add_insulation_to_construction_($/ft^2).",
490
490
  "name": "one_time_retrofit_cost_ip",
491
491
  "value": 0.0,
492
- "uuid": "f0c67750-6ad3-0131-5a2c-14109fdf0b37",
493
- "version_uuid": "f0c69710-6ad3-0131-5a2d-14109fdf0b37"
492
+ "uuid": "3f9de4b0-6ad6-0131-5b0c-14109fdf0b37",
493
+ "version_uuid": "3f9e00f0-6ad6-0131-5b0d-14109fdf0b37"
494
494
  },
495
495
  {
496
496
  "display_name": "Year to Incur One Time Retrofit Cost (whole years).",
497
497
  "machine_name": "year_to_incur_one_time_retrofit_cost_(whole_years).",
498
498
  "name": "years_until_retrofit_cost",
499
499
  "value": 0,
500
- "uuid": "f0c6b550-6ad3-0131-5a2e-14109fdf0b37",
501
- "version_uuid": "f0c6cff0-6ad3-0131-5a2f-14109fdf0b37"
500
+ "uuid": "3f9e20b0-6ad6-0131-5b0e-14109fdf0b37",
501
+ "version_uuid": "3f9e3db0-6ad6-0131-5b0f-14109fdf0b37"
502
502
  }
503
503
  ],
504
504
  "bcl_measure_directory": "./measures/increase_insulation_r_value_for_roofs",
@@ -506,14 +506,14 @@
506
506
  "bcl_measure_class_name_ADDME": "IncreaseInsulationRValueForRoofs",
507
507
  "measure_definition_class_name_CHANGE_TO_ME": "IncreaseInsulationRValueForRoofs",
508
508
  "measure_definition_class_name": "IncreaseInsulationRValueForRoofs",
509
- "bcl_measure_uuid": "f0c59270-6ad3-0131-5a24-14109fdf0b37",
510
- "measure_definition_uuid_CHANGE_TO_ME": "f0c5b010-6ad3-0131-5a25-14109fdf0b37",
511
- "bcl_measure_version_uuid": "f0c5ce20-6ad3-0131-5a26-14109fdf0b37",
512
- "measure_definition_version_uuid_CHANGE_TO_ME": "f0c5e8f0-6ad3-0131-5a27-14109fdf0b37",
509
+ "bcl_measure_uuid": "3f9d0180-6ad6-0131-5b04-14109fdf0b37",
510
+ "measure_definition_uuid_CHANGE_TO_ME": "3f9d1ed0-6ad6-0131-5b05-14109fdf0b37",
511
+ "bcl_measure_version_uuid": "3f9d38d0-6ad6-0131-5b06-14109fdf0b37",
512
+ "measure_definition_version_uuid_CHANGE_TO_ME": "3f9d51d0-6ad6-0131-5b07-14109fdf0b37",
513
513
  "measure_type": "RubyMeasure",
514
514
  "name": "set_r_value_of_insulation_for_roofs_to_a_specific_value",
515
515
  "display_name": "Set R-value of Insulation for Roofs to a Specific Value",
516
- "uuid": "f0c603a0-6ad3-0131-5a28-14109fdf0b37",
516
+ "uuid": "3f9d6a40-6ad6-0131-5b08-14109fdf0b37",
517
517
  "variables": [
518
518
  {
519
519
  "argument": {
@@ -558,7 +558,7 @@
558
558
  "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
559
559
  }
560
560
  ],
561
- "version_uuid": "f0c61d30-6ad3-0131-5a29-14109fdf0b37",
561
+ "version_uuid": "3f9d8280-6ad6-0131-5b09-14109fdf0b37",
562
562
  "workflow_index": 4,
563
563
  "workflow_step_type": "Measure"
564
564
  },
@@ -569,8 +569,8 @@
569
569
  "machine_name": "apply_the_measure_to_a_specific_space_type_or_to_the_entire_model.",
570
570
  "name": "space_type",
571
571
  "value": "*Entire Building*",
572
- "uuid": "f0c7a880-6ad3-0131-5a36-14109fdf0b37",
573
- "version_uuid": "f0c7c570-6ad3-0131-5a37-14109fdf0b37"
572
+ "uuid": "3f9f5730-6ad6-0131-5b16-14109fdf0b37",
573
+ "version_uuid": "3f9f75e0-6ad6-0131-5b17-14109fdf0b37"
574
574
  }
575
575
  ],
576
576
  "bcl_measure_directory": "./measures/reduce_ventilation_by_percentage",
@@ -578,14 +578,14 @@
578
578
  "bcl_measure_class_name_ADDME": "ReduceVentilationByPercentage",
579
579
  "measure_definition_class_name_CHANGE_TO_ME": "ReduceVentilationByPercentage",
580
580
  "measure_definition_class_name": "ReduceVentilationByPercentage",
581
- "bcl_measure_uuid": "f0c6f2c0-6ad3-0131-5a30-14109fdf0b37",
582
- "measure_definition_uuid_CHANGE_TO_ME": "f0c71070-6ad3-0131-5a31-14109fdf0b37",
583
- "bcl_measure_version_uuid": "f0c72ed0-6ad3-0131-5a32-14109fdf0b37",
584
- "measure_definition_version_uuid_CHANGE_TO_ME": "f0c74c10-6ad3-0131-5a33-14109fdf0b37",
581
+ "bcl_measure_uuid": "3f9e6650-6ad6-0131-5b10-14109fdf0b37",
582
+ "measure_definition_uuid_CHANGE_TO_ME": "3f9e86a0-6ad6-0131-5b11-14109fdf0b37",
583
+ "bcl_measure_version_uuid": "3f9ea890-6ad6-0131-5b12-14109fdf0b37",
584
+ "measure_definition_version_uuid_CHANGE_TO_ME": "3f9ed760-6ad6-0131-5b13-14109fdf0b37",
585
585
  "measure_type": "RubyMeasure",
586
586
  "name": "reduce_ventilation_by_percentage",
587
587
  "display_name": "Reduce Ventilation By Percentage",
588
- "uuid": "f0c76960-6ad3-0131-5a34-14109fdf0b37",
588
+ "uuid": "3f9efeb0-6ad6-0131-5b14-14109fdf0b37",
589
589
  "variables": [
590
590
  {
591
591
  "argument": {
@@ -633,7 +633,7 @@
633
633
  "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
634
634
  }
635
635
  ],
636
- "version_uuid": "f0c786b0-6ad3-0131-5a35-14109fdf0b37",
636
+ "version_uuid": "3f9f1d50-6ad6-0131-5b15-14109fdf0b37",
637
637
  "workflow_index": 5,
638
638
  "workflow_step_type": "Measure"
639
639
  }