openstudio-analysis 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/openstudio/analysis/translator/excel.rb +5 -5
- data/lib/openstudio/analysis/version.rb +1 -1
- data/spec/files/export/analysis/discrete_seed.json +74 -74
- data/spec/files/export/analysis/discrete_seed.zip +0 -0
- data/spec/files/export/analysis/small_seed.json +76 -76
- data/spec/files/export/analysis/small_seed.zip +0 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-create-a-new-localhost-instance.46.xml +9 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-test-not-localhost.46.xml +9 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi.46.xml +7 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-discrete-variables.4.xml +21 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-no-variables-defined.46.xml +20 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup-with-user.12.xml +9 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup.18.xml +9 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-setup-version-2.39.xml +21 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-incomplete-variables.46.xml +9 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables-should-not-validate.46.xml +9 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables.46.xml +24 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-with-with-repeated-variable-names.46.xml +9 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel.46.xml +7 -0
- metadata +27 -3
- data/spec/files/~$discrete_variables.xlsx +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c063b5657c75befc82e2d5a1c49e1cf0539e9726
|
4
|
+
data.tar.gz: 961cb0c4a6b7ccf53e6169d923c358fba57abe29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 "
|
215
|
+
case @variable['type'].downcase
|
216
|
+
when "double"
|
217
217
|
@static_value = @variable['distribution']['static_value'].to_f
|
218
|
-
when "
|
218
|
+
when "integer"
|
219
219
|
@static_value = @variable['distribution']['static_value'].to_i
|
220
|
-
when "
|
220
|
+
when "string", "choice"
|
221
221
|
@static_value = @variable['distribution']['static_value'].inspect
|
222
|
-
when "
|
222
|
+
when "bool"
|
223
223
|
if @variable['distribution']['static_value'].downcase == "true"
|
224
224
|
@static_value = true
|
225
225
|
else
|
@@ -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": "
|
24
|
-
"version_uuid": "
|
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": "
|
32
|
-
"version_uuid": "
|
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": "
|
40
|
-
"version_uuid": "
|
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": "
|
48
|
-
"version_uuid": "
|
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": "
|
56
|
-
"version_uuid": "
|
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": "
|
64
|
-
"version_uuid": "
|
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": "
|
72
|
-
"version_uuid": "
|
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": "
|
80
|
-
"version_uuid": "
|
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": "
|
89
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
90
|
-
"bcl_measure_version_uuid": "
|
91
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
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": "
|
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": "
|
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": "
|
156
|
-
"version_uuid": "
|
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": "
|
164
|
-
"version_uuid": "
|
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": "
|
172
|
-
"version_uuid": "
|
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": "
|
180
|
-
"version_uuid": "
|
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": "
|
189
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
190
|
-
"bcl_measure_version_uuid": "
|
191
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
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": "
|
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": "
|
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": "
|
254
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
255
|
-
"bcl_measure_version_uuid": "
|
256
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
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": "
|
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": "
|
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": "
|
397
|
-
"version_uuid": "
|
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": "
|
405
|
-
"version_uuid": "
|
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": "
|
413
|
-
"version_uuid": "
|
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": "
|
422
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
423
|
-
"bcl_measure_version_uuid": "
|
424
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
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": "
|
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": "
|
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": "
|
485
|
-
"version_uuid": "
|
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": "
|
493
|
-
"version_uuid": "
|
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": "
|
501
|
-
"version_uuid": "
|
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": "
|
510
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
511
|
-
"bcl_measure_version_uuid": "
|
512
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
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": "
|
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": "
|
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": "
|
573
|
-
"version_uuid": "
|
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": "
|
582
|
-
"measure_definition_uuid_CHANGE_TO_ME": "
|
583
|
-
"bcl_measure_version_uuid": "
|
584
|
-
"measure_definition_version_uuid_CHANGE_TO_ME": "
|
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": "
|
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": "
|
636
|
+
"version_uuid": "3f9f1d50-6ad6-0131-5b15-14109fdf0b37",
|
637
637
|
"workflow_index": 5,
|
638
638
|
"workflow_step_type": "Measure"
|
639
639
|
}
|
Binary file
|