openstudio-analysis 0.3.7 → 0.4.0

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 (91) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -6
  3. data/README.md +55 -7
  4. data/Rakefile +10 -0
  5. data/lib/openstudio/analysis/algorithm_attributes.rb +22 -0
  6. data/lib/openstudio/analysis/formulation.rb +174 -0
  7. data/lib/openstudio/analysis/translator/excel.rb +65 -48
  8. data/lib/openstudio/analysis/version.rb +1 -1
  9. data/lib/openstudio/analysis/workflow.rb +197 -0
  10. data/lib/openstudio/analysis/workflow_step.rb +312 -0
  11. data/lib/openstudio/analysis.rb +8 -0
  12. data/lib/openstudio/helpers/string.rb +22 -22
  13. data/lib/openstudio/templates/analysis.json.erb +0 -1
  14. data/lib/openstudio-analysis.rb +9 -0
  15. data/spec/files/0_1_09_small_list_incomplete.xlsx +0 -0
  16. data/spec/files/0_2_0_template_simpletest.xlsx +0 -0
  17. data/spec/files/0_4_0_lhs_discrete_continuous.xlsx +0 -0
  18. data/spec/files/analysis/example_analysis_api.json +656 -0
  19. data/spec/files/analysis/examples/discrete_lhs_example.json +809 -0
  20. data/spec/files/analysis/examples/medium_office_example.json +1673 -0
  21. data/spec/files/analysis/lhs_discrete_and_continuous_variables_api.json +1230 -0
  22. data/spec/files/analysis/medium_office.json +91 -92
  23. data/spec/files/analysis/medium_office.zip +0 -0
  24. data/spec/files/analysis/name_goes_here_api.json +1681 -0
  25. data/spec/files/analysis/output_vars_api.json +632 -0
  26. data/spec/files/analysis/preflight_api.json +1518 -0
  27. data/spec/files/analysis/simple_test_api.json +519 -0
  28. data/spec/files/analysis/test_model_api.json +493 -0
  29. data/spec/files/export/analysis/0_1_09_outputvars.json +38 -39
  30. data/spec/files/export/analysis/0_1_09_outputvars.zip +0 -0
  31. data/spec/files/export/analysis/0_1_11_discrete_variables.json +46 -47
  32. data/spec/files/export/analysis/0_1_11_discrete_variables.zip +0 -0
  33. data/spec/files/export/analysis/0_1_12_discrete_dynamic_columns.json +8 -9
  34. data/spec/files/export/analysis/0_1_12_discrete_dynamic_columns.zip +0 -0
  35. data/spec/files/export/analysis/0_2_0_template_simpletest.json +19 -14
  36. data/spec/files/export/analysis/0_2_0_template_simpletest.zip +0 -0
  37. data/spec/files/export/analysis/0_3_0_outputs.json +99 -100
  38. data/spec/files/export/analysis/0_3_0_outputs.zip +0 -0
  39. data/spec/files/export/analysis/{6d6a08db-fdf8-4bb5-8ad3-18c471418c72.json → 276ccf51-ed22-4604-a380-8985cec5efe8.json} +103 -104
  40. data/spec/files/export/analysis/{6d6a08db-fdf8-4bb5-8ad3-18c471418c72.zip → 276ccf51-ed22-4604-a380-8985cec5efe8.zip} +0 -0
  41. data/spec/files/export/analysis/{55086845-70cf-487f-87f6-7a147cbf1e72.json → 639cb8a5-cdbb-4b69-955a-cbb650f6872b.json} +107 -108
  42. data/spec/files/export/analysis/{55086845-70cf-487f-87f6-7a147cbf1e72.zip → 639cb8a5-cdbb-4b69-955a-cbb650f6872b.zip} +0 -0
  43. data/spec/files/export/analysis/{10c791ce-cba7-4506-a863-3fb15703889b.json → 9560f95b-5730-4038-a95b-328c825c596b.json} +99 -100
  44. data/spec/files/export/analysis/{10c791ce-cba7-4506-a863-3fb15703889b.zip → 9560f95b-5730-4038-a95b-328c825c596b.zip} +0 -0
  45. data/spec/files/export/analysis/{f028bfbe-e30e-488d-adad-a60a62bbf7e0.json → c50f0062-cdfb-4dec-bc02-215f6c29af3c.json} +107 -108
  46. data/spec/files/export/analysis/{f028bfbe-e30e-488d-adad-a60a62bbf7e0.zip → c50f0062-cdfb-4dec-bc02-215f6c29af3c.zip} +0 -0
  47. data/spec/files/export/analysis/discrete_lhs_example.json +1185 -0
  48. data/spec/files/export/analysis/discrete_lhs_example.zip +0 -0
  49. data/spec/files/export/analysis/small_seed.json +38 -39
  50. data/spec/files/export/analysis/small_seed.zip +0 -0
  51. data/spec/files/export/workflow/analysis.json +23 -0
  52. data/spec/files/measures/ActualMeasureNoJson/measure.json +25 -0
  53. data/spec/files/measures/ActualMeasureNoJson/measure.rb +80 -0
  54. data/spec/files/measures/ActualMeasureNoJson/measure.xml +2 -0
  55. data/spec/files/measures/SetThermostatSchedules/measure.json +63 -0
  56. data/spec/files/measures/SetThermostatSchedules/measure.rb +254 -0
  57. data/spec/files/measures/SetThermostatSchedules/measure.xml +2 -0
  58. data/spec/openstudio/excel_spec.rb +11 -11
  59. data/spec/openstudio/formulation_spec.rb +107 -0
  60. data/spec/openstudio/workflow_spec.rb +90 -0
  61. data/spec/openstudio/workflow_step_spec.rb +116 -0
  62. data/spec/reports/SPEC-OpenStudio-Analysis-Formulation.xml +28 -0
  63. data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-create-a-new-object-instance.xml +2 -2
  64. data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-test-not-localhost.xml +2 -2
  65. data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi.xml +1 -1
  66. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-discrete-variables.xml +30 -4
  67. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-discrete-with-dynamic-columns.xml +11 -3
  68. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-no-variables-defined.xml +6 -6
  69. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup-with-user.xml +2 -2
  70. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup.xml +2 -2
  71. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-setup-output-variables.xml +52 -8
  72. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-setup-version-0-1-9.xml +22 -5
  73. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-incomplete-variables.xml +2 -2
  74. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables-should-not-validate.xml +2 -2
  75. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables.xml +28 -5
  76. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-with-with-repeated-variable-names.xml +2 -2
  77. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-1-10.xml +3 -3
  78. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-2-0-simple.xml +13 -6
  79. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-2-0.xml +55 -5
  80. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-dynamic-uuid-assignments.xml +9 -4
  81. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-measure-existence-checks.xml +8 -3
  82. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-objective-functions.xml +13 -5
  83. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-3-and-short-display-names.xml +9 -4
  84. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-5-and-measure-paths.xml +9 -4
  85. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-7-and-worker-init-final-scripts.0.xml +40 -2
  86. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-7-and-worker-init-final-scripts.xml +9 -4
  87. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel.xml +1 -1
  88. data/spec/reports/SPEC-OpenStudio-Analysis-Workflow.xml +31 -0
  89. data/spec/reports/SPEC-OpenStudio-Analysis-WorkflowStep.xml +29 -0
  90. data/spec/spec_helper.rb +1 -1
  91. metadata +87 -18
@@ -0,0 +1,1185 @@
1
+ {
2
+ "analysis": {
3
+ "display_name": "LHS Discrete and Continuous Variables",
4
+ "name": "lhs_discrete_and_continuous_variables",
5
+ "output_variables": [
6
+ {
7
+ "display_name": "Total Site Energy Intensity",
8
+ "display_name_short": "Site EUI",
9
+ "metadata_id": "total_site_energy_intensity",
10
+ "name": "standard_report_legacy.total_energy",
11
+ "units": "MJ/m2",
12
+ "visualize": true,
13
+ "export": true,
14
+ "variable_type": "double",
15
+ "objective_function": true,
16
+ "objective_function_index": 0,
17
+ "objective_function_target": null,
18
+ "scaling_factor": null,
19
+ "objective_function_group": 1
20
+ },
21
+ {
22
+ "display_name": "Total Source Energy Intensity",
23
+ "display_name_short": "Source EUI",
24
+ "metadata_id": "total_source_energy_intensity",
25
+ "name": "standard_report_legacy.total_source_energy",
26
+ "units": "MJ/m2",
27
+ "visualize": true,
28
+ "export": true,
29
+ "variable_type": "double",
30
+ "objective_function": true,
31
+ "objective_function_index": 1,
32
+ "objective_function_target": null,
33
+ "scaling_factor": null,
34
+ "objective_function_group": 2
35
+ },
36
+ {
37
+ "display_name": "Total Natural Gas Intensity",
38
+ "display_name_short": "NG EUI",
39
+ "metadata_id": "total_natural_gas_intensity",
40
+ "name": "standard_report_legacy.total_natural_gas",
41
+ "units": "MJ/m2",
42
+ "visualize": true,
43
+ "export": true,
44
+ "variable_type": "double",
45
+ "objective_function": false,
46
+ "objective_function_index": null,
47
+ "objective_function_target": null,
48
+ "scaling_factor": null
49
+ },
50
+ {
51
+ "display_name": "Total Electricity Intensity",
52
+ "display_name_short": "Elec EUI",
53
+ "metadata_id": "total_electricity_intensity",
54
+ "name": "standard_report_legacy.total_electricity",
55
+ "units": "MJ/m2",
56
+ "visualize": true,
57
+ "export": true,
58
+ "variable_type": "double",
59
+ "objective_function": false,
60
+ "objective_function_index": null,
61
+ "objective_function_target": null,
62
+ "scaling_factor": null
63
+ },
64
+ {
65
+ "display_name": "Unmet Cooling Hours",
66
+ "display_name_short": "Unmet Cooling Hours",
67
+ "metadata_id": null,
68
+ "name": "standard_reports.time_setpoint_not_met_during_occupied_cooling",
69
+ "units": "hrs",
70
+ "visualize": true,
71
+ "export": true,
72
+ "variable_type": "double",
73
+ "objective_function": false,
74
+ "objective_function_index": null,
75
+ "objective_function_target": null,
76
+ "scaling_factor": null
77
+ },
78
+ {
79
+ "display_name": "Unmet Heating Hours",
80
+ "display_name_short": "Unmet Heating Hours",
81
+ "metadata_id": null,
82
+ "name": "standard_reports.time_setpoint_not_met_during_occupied_heating",
83
+ "units": "hrs",
84
+ "visualize": true,
85
+ "export": true,
86
+ "variable_type": "double",
87
+ "objective_function": false,
88
+ "objective_function_index": null,
89
+ "objective_function_target": null,
90
+ "scaling_factor": null
91
+ },
92
+ {
93
+ "display_name": "Total Unmet Hours",
94
+ "display_name_short": "Total Unmet Hours",
95
+ "metadata_id": null,
96
+ "name": "standard_reports.time_setpoint_not_met_during_occupied_hours",
97
+ "units": "hrs",
98
+ "visualize": true,
99
+ "export": true,
100
+ "variable_type": "double",
101
+ "objective_function": false,
102
+ "objective_function_index": null,
103
+ "objective_function_target": null,
104
+ "scaling_factor": null
105
+ },
106
+ {
107
+ "display_name": "Building Area",
108
+ "display_name_short": "Building Area",
109
+ "metadata_id": null,
110
+ "name": "standard_reports.total_building_area",
111
+ "units": "m2",
112
+ "visualize": true,
113
+ "export": true,
114
+ "variable_type": "double",
115
+ "objective_function": false,
116
+ "objective_function_index": null,
117
+ "objective_function_target": null,
118
+ "scaling_factor": null
119
+ },
120
+ {
121
+ "display_name": "Natural Gas Heating Intensity",
122
+ "display_name_short": "Natural Gas Heating Intensity",
123
+ "metadata_id": null,
124
+ "name": "standard_report_legacy.heating_natural_gas",
125
+ "units": "MJ/m2",
126
+ "visualize": false,
127
+ "export": true,
128
+ "variable_type": "double",
129
+ "objective_function": false,
130
+ "objective_function_index": null,
131
+ "objective_function_target": null,
132
+ "scaling_factor": null
133
+ },
134
+ {
135
+ "display_name": "Cooling Electricity Intensity",
136
+ "display_name_short": "Cooling Electricity Intensity",
137
+ "metadata_id": null,
138
+ "name": "standard_report_legacy.cooling_electricity",
139
+ "units": "MJ/m2",
140
+ "visualize": false,
141
+ "export": true,
142
+ "variable_type": "double",
143
+ "objective_function": false,
144
+ "objective_function_index": null,
145
+ "objective_function_target": null,
146
+ "scaling_factor": null
147
+ },
148
+ {
149
+ "display_name": "Interior Lighting Electricity Intensity",
150
+ "display_name_short": "Interior Lighting Electricity Intensity",
151
+ "metadata_id": null,
152
+ "name": "standard_report_legacy.interior_lighting_electricity",
153
+ "units": "MJ/m2",
154
+ "visualize": false,
155
+ "export": true,
156
+ "variable_type": "double",
157
+ "objective_function": false,
158
+ "objective_function_index": null,
159
+ "objective_function_target": null,
160
+ "scaling_factor": null
161
+ },
162
+ {
163
+ "display_name": "Exterior Lighting Electricity Intensity",
164
+ "display_name_short": "Exterior Lighting Electricity Intensity",
165
+ "metadata_id": null,
166
+ "name": "standard_report_legacy.exterior_lighting_electricity",
167
+ "units": "MJ/m2",
168
+ "visualize": false,
169
+ "export": true,
170
+ "variable_type": "double",
171
+ "objective_function": false,
172
+ "objective_function_index": null,
173
+ "objective_function_target": null,
174
+ "scaling_factor": null
175
+ },
176
+ {
177
+ "display_name": "Equipment Electricity Intensity",
178
+ "display_name_short": "Equipment Electricity Intensity",
179
+ "metadata_id": null,
180
+ "name": "standard_report_legacy.interior_equipment_electricity",
181
+ "units": "MJ/m2",
182
+ "visualize": false,
183
+ "export": true,
184
+ "variable_type": "double",
185
+ "objective_function": false,
186
+ "objective_function_index": null,
187
+ "objective_function_target": null,
188
+ "scaling_factor": null
189
+ },
190
+ {
191
+ "display_name": "Equipment Natural Gas Intensity",
192
+ "display_name_short": "Equipment Natural Gas Intensity",
193
+ "metadata_id": null,
194
+ "name": "standard_report_legacy.interior_equipment_natural_gas",
195
+ "units": "MJ/m2",
196
+ "visualize": false,
197
+ "export": true,
198
+ "variable_type": "double",
199
+ "objective_function": false,
200
+ "objective_function_index": null,
201
+ "objective_function_target": null,
202
+ "scaling_factor": null
203
+ },
204
+ {
205
+ "display_name": "Experior Equipment Electricity Intensity",
206
+ "display_name_short": "Experior Equipment Electricity Intensity",
207
+ "metadata_id": null,
208
+ "name": "standard_report_legacy.exterior_equipment_electricity",
209
+ "units": "MJ/m2",
210
+ "visualize": false,
211
+ "export": true,
212
+ "variable_type": "double",
213
+ "objective_function": false,
214
+ "objective_function_index": null,
215
+ "objective_function_target": null,
216
+ "scaling_factor": null
217
+ },
218
+ {
219
+ "display_name": "Fans Electricity Intensity",
220
+ "display_name_short": "Fans Electricity Intensity",
221
+ "metadata_id": null,
222
+ "name": "standard_report_legacy.fans_electricity",
223
+ "units": "MJ/m2",
224
+ "visualize": false,
225
+ "export": true,
226
+ "variable_type": "double",
227
+ "objective_function": false,
228
+ "objective_function_index": null,
229
+ "objective_function_target": null,
230
+ "scaling_factor": null
231
+ },
232
+ {
233
+ "display_name": "Pumps Electricity Intensity",
234
+ "display_name_short": "Pumps Electricity Intensity",
235
+ "metadata_id": null,
236
+ "name": "standard_report_legacy.pumps_electricity",
237
+ "units": "MJ/m2",
238
+ "visualize": false,
239
+ "export": true,
240
+ "variable_type": "double",
241
+ "objective_function": false,
242
+ "objective_function_index": null,
243
+ "objective_function_target": null,
244
+ "scaling_factor": null
245
+ },
246
+ {
247
+ "display_name": "Heat Rejection Electricity Intensity",
248
+ "display_name_short": "Heat Rejection Electricity Intensity",
249
+ "metadata_id": null,
250
+ "name": "standard_report_legacy.heat_rejection_electricity",
251
+ "units": "MJ/m2",
252
+ "visualize": false,
253
+ "export": true,
254
+ "variable_type": "double",
255
+ "objective_function": false,
256
+ "objective_function_index": null,
257
+ "objective_function_target": null,
258
+ "scaling_factor": null
259
+ },
260
+ {
261
+ "display_name": "Humidification Electricity Intensity",
262
+ "display_name_short": "Humidification Electricity Intensity",
263
+ "metadata_id": null,
264
+ "name": "standard_report_legacy.humidification_electricity",
265
+ "units": "MJ/m2",
266
+ "visualize": false,
267
+ "export": true,
268
+ "variable_type": "double",
269
+ "objective_function": false,
270
+ "objective_function_index": null,
271
+ "objective_function_target": null,
272
+ "scaling_factor": null
273
+ },
274
+ {
275
+ "display_name": "Water Systems Electricity Intensity",
276
+ "display_name_short": "Water Systems Electricity Intensity",
277
+ "metadata_id": null,
278
+ "name": "standard_report_legacy.water_systems_electricity",
279
+ "units": "MJ/m2",
280
+ "visualize": false,
281
+ "export": true,
282
+ "variable_type": "double",
283
+ "objective_function": false,
284
+ "objective_function_index": null,
285
+ "objective_function_target": null,
286
+ "scaling_factor": null
287
+ },
288
+ {
289
+ "display_name": "Water Systems Natural Gas Intensity",
290
+ "display_name_short": "Water Systems Natural Gas Intensity",
291
+ "metadata_id": null,
292
+ "name": "standard_report_legacy.water_systems_natural_gas",
293
+ "units": "MJ/m2",
294
+ "visualize": false,
295
+ "export": true,
296
+ "variable_type": "double",
297
+ "objective_function": false,
298
+ "objective_function_index": null,
299
+ "objective_function_target": null,
300
+ "scaling_factor": null
301
+ },
302
+ {
303
+ "display_name": "Refrigeration Electricity Intensity",
304
+ "display_name_short": "Refrigeration Electricity Intensity",
305
+ "metadata_id": null,
306
+ "name": "standard_report_legacy.refrigeration_electricity",
307
+ "units": "MJ/m2",
308
+ "visualize": false,
309
+ "export": true,
310
+ "variable_type": "double",
311
+ "objective_function": false,
312
+ "objective_function_index": null,
313
+ "objective_function_target": null,
314
+ "scaling_factor": null
315
+ },
316
+ {
317
+ "display_name": "Total Life Cycle Cost",
318
+ "display_name_short": "Total Life Cycle Cost",
319
+ "metadata_id": null,
320
+ "name": "standard_report.total_life_cycle_cost",
321
+ "units": "$",
322
+ "visualize": true,
323
+ "export": true,
324
+ "variable_type": "double",
325
+ "objective_function": false,
326
+ "objective_function_index": null,
327
+ "objective_function_target": null,
328
+ "scaling_factor": null
329
+ }
330
+ ],
331
+ "problem": {
332
+ "algorithm": {
333
+ "sample_method": "all_variables",
334
+ "number_of_samples": 5,
335
+ "objective_functions": [
336
+ "standard_report_legacy.total_energy",
337
+ "standard_report_legacy.total_source_energy"
338
+ ]
339
+ },
340
+ "workflow": [
341
+ {
342
+ "measure_definition_class_name": "ReduceLightingLoadsByPercentage",
343
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
344
+ "measure_definition_display_name": "ReduceLightingLoadsByPercentage",
345
+ "measure_definition_uuid": "a5c2406c-146c-49c3-a437-ba3e436a3793",
346
+ "measure_definition_version_uuid": "055621fe-c51f-4f04-96e0-95cfaeb6f7fd",
347
+ "measure_type": "RubyMeasure",
348
+ "arguments": [
349
+ {
350
+ "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.",
351
+ "display_name_short": "Apply the Measure to a Specific Space Type or to the Entire Model.",
352
+ "name": "space_type",
353
+ "value": "*Entire Building*",
354
+ "value_type": "choice"
355
+ },
356
+ {
357
+ "display_name": "Increase in Material and Installation Cost for Lighting per Floor Area (%).",
358
+ "display_name_short": "Increase in Material and Installation Cost for Lighting per Floor Area (%).",
359
+ "name": "material_and_installation_cost",
360
+ "value": 150.0,
361
+ "value_type": "double"
362
+ },
363
+ {
364
+ "display_name": "Increase in Demolition Costs for Lighting per Floor Area (%).",
365
+ "display_name_short": "Increase in Demolition Costs for Lighting per Floor Area (%).",
366
+ "name": "demolition_cost",
367
+ "value": 0.0,
368
+ "value_type": "double"
369
+ },
370
+ {
371
+ "display_name": "Years Until Costs Start (whole years).",
372
+ "display_name_short": "Years Until Costs Start (whole years).",
373
+ "name": "years_until_costs_start",
374
+ "value": 0,
375
+ "value_type": "integer"
376
+ },
377
+ {
378
+ "display_name": "Demolition Costs Occur During Initial Construction?",
379
+ "display_name_short": "Demolition Costs Occur During Initial Construction?",
380
+ "name": "demo_cost_initial_const",
381
+ "value": false,
382
+ "value_type": "bool"
383
+ },
384
+ {
385
+ "display_name": "Expected Life (whole years).",
386
+ "display_name_short": "Expected Life (whole years).",
387
+ "name": "expected_life",
388
+ "value": 15,
389
+ "value_type": "integer"
390
+ },
391
+ {
392
+ "display_name": "Increase O & M Costs for Lighting per Floor Area (%).",
393
+ "display_name_short": "Increase O & M Costs for Lighting per Floor Area (%).",
394
+ "name": "om_cost",
395
+ "value": 0.0,
396
+ "value_type": "double"
397
+ },
398
+ {
399
+ "display_name": "O & M Frequency (whole years).",
400
+ "display_name_short": "O & M Frequency (whole years).",
401
+ "name": "om_frequency",
402
+ "value": 1,
403
+ "value_type": "integer"
404
+ }
405
+ ],
406
+ "display_name": "Reduce Lighting Loads by Percentage",
407
+ "name": "reduce_lighting_loads_by_percentage",
408
+ "variables": [
409
+ {
410
+ "argument": {
411
+ "display_name": "LPD Reduction",
412
+ "display_name_short": "LPD Reduction",
413
+ "name": "lighting_power_reduction_percent",
414
+ "value_type": "double"
415
+ },
416
+ "display_name": "LPD Reduction",
417
+ "display_name_short": "LPD Reduction",
418
+ "maximum": 70.0,
419
+ "minimum": 0.0,
420
+ "relation_to_output": "",
421
+ "static_value": 0.0,
422
+ "uncertainty_description": {
423
+ "attributes": [
424
+ {
425
+ "name": "lower_bounds",
426
+ "value": 0.0
427
+ },
428
+ {
429
+ "name": "upper_bounds",
430
+ "value": 70.0
431
+ },
432
+ {
433
+ "name": "stddev",
434
+ "value": 11.66666667
435
+ },
436
+ {
437
+ "name": "delta_x",
438
+ "value": 5.0
439
+ },
440
+ {
441
+ "name": "modes",
442
+ "value": 20.0
443
+ }
444
+ ],
445
+ "type": "triangle_uncertain"
446
+ },
447
+ "units": "",
448
+ "value_type": "double",
449
+ "variable": true,
450
+ "variable_type": "RubyContinuousVariable",
451
+ "uuid": "65e58e76-6402-40dd-9ebe-2343d13fc1a4",
452
+ "version_uuid": "bfec9402-dace-4780-b93d-aa66258809cc"
453
+ }
454
+ ],
455
+ "workflow_index": 0,
456
+ "workflow_step_type": "Measure",
457
+ "uuid": "670e2c77-2a5b-470d-9c32-4457ab4eb984",
458
+ "version_uuid": "fdb2874c-15e8-48a0-92e8-c9e534d907a6"
459
+ },
460
+ {
461
+ "measure_definition_class_name": "RotateBuilding",
462
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
463
+ "measure_definition_display_name": "RotateBuilding",
464
+ "measure_definition_uuid": "6c607d90-1429-45ed-92f1-0da5637b21fc",
465
+ "measure_definition_version_uuid": "21eae587-5519-4652-a1e2-3001ec52dab0",
466
+ "measure_type": "RubyMeasure",
467
+ "arguments": [
468
+
469
+ ],
470
+ "display_name": "Rotate Building Relative to Current Orientation",
471
+ "name": "rotate_building_relative_to_current_orientation",
472
+ "variables": [
473
+ {
474
+ "argument": {
475
+ "display_name": "Rotation",
476
+ "display_name_short": "Rotation",
477
+ "name": "relative_building_rotation",
478
+ "value_type": "double"
479
+ },
480
+ "display_name": "Rotation",
481
+ "display_name_short": "Rotation",
482
+ "maximum": 359.0,
483
+ "minimum": 0.0,
484
+ "relation_to_output": "",
485
+ "static_value": 0.0,
486
+ "uncertainty_description": {
487
+ "attributes": [
488
+ {
489
+ "name": "lower_bounds",
490
+ "value": 0.0
491
+ },
492
+ {
493
+ "name": "upper_bounds",
494
+ "value": 359.0
495
+ },
496
+ {
497
+ "name": "stddev",
498
+ "value": 59.83333333
499
+ },
500
+ {
501
+ "name": "delta_x",
502
+ "value": null
503
+ },
504
+ {
505
+ "name": "modes",
506
+ "value": 180.0
507
+ }
508
+ ],
509
+ "type": "uniform_uncertain"
510
+ },
511
+ "units": "",
512
+ "value_type": "double",
513
+ "variable": true,
514
+ "variable_type": "RubyContinuousVariable",
515
+ "uuid": "e0a10f7b-4322-471d-87d6-339dddaf18fc",
516
+ "version_uuid": "0ea15920-66e2-4650-a6ce-c75ad811263c"
517
+ }
518
+ ],
519
+ "workflow_index": 1,
520
+ "workflow_step_type": "Measure",
521
+ "uuid": "22e962ff-73c4-42fc-b7e7-13135a811b4d",
522
+ "version_uuid": "5148a1f1-7a45-4868-a843-e8ed328f66fb"
523
+ },
524
+ {
525
+ "measure_definition_class_name": "IncreaseInsulationRValueForExteriorWalls",
526
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
527
+ "measure_definition_display_name": "IncreaseInsulationRValueForExteriorWalls",
528
+ "measure_definition_uuid": "3d767eab-ed68-482d-9522-ecbae3f8741f",
529
+ "measure_definition_version_uuid": "3147f412-5d42-4cb5-a24f-c21cb6fef68c",
530
+ "measure_type": "RubyMeasure",
531
+ "arguments": [
532
+ {
533
+ "display_name": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).",
534
+ "display_name_short": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).",
535
+ "name": "material_cost_increase_ip",
536
+ "value": 0.0,
537
+ "value_type": "double"
538
+ },
539
+ {
540
+ "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).",
541
+ "display_name_short": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).",
542
+ "name": "one_time_retrofit_cost_ip",
543
+ "value": 0.0,
544
+ "value_type": "double"
545
+ },
546
+ {
547
+ "display_name": "Year to Incur One Time Retrofit Cost (whole years).",
548
+ "display_name_short": "Year to Incur One Time Retrofit Cost (whole years).",
549
+ "name": "years_until_retrofit_cost",
550
+ "value": 0,
551
+ "value_type": "integer"
552
+ }
553
+ ],
554
+ "display_name": "Set R-value of Insulation for Exterior Walls to a Specific Value",
555
+ "name": "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value",
556
+ "variables": [
557
+ {
558
+ "argument": {
559
+ "display_name": "Wall R-Value",
560
+ "display_name_short": "Wall R-Value",
561
+ "name": "r_value",
562
+ "value_type": "double"
563
+ },
564
+ "display_name": "Wall R-Value",
565
+ "display_name_short": "Wall R-Value",
566
+ "maximum": 50.0,
567
+ "minimum": 0.0,
568
+ "relation_to_output": "",
569
+ "static_value": 13.0,
570
+ "uncertainty_description": {
571
+ "attributes": [
572
+ {
573
+ "name": "lower_bounds",
574
+ "value": 0.0
575
+ },
576
+ {
577
+ "name": "upper_bounds",
578
+ "value": 50.0
579
+ },
580
+ {
581
+ "name": "stddev",
582
+ "value": 8.333333333
583
+ },
584
+ {
585
+ "name": "delta_x",
586
+ "value": null
587
+ },
588
+ {
589
+ "name": "modes",
590
+ "value": 25.0
591
+ }
592
+ ],
593
+ "type": "normal_uncertain"
594
+ },
595
+ "units": "",
596
+ "value_type": "double",
597
+ "variable": true,
598
+ "variable_type": "RubyContinuousVariable",
599
+ "uuid": "48eb9d8d-b276-4628-9315-8279c201e210",
600
+ "version_uuid": "63758c42-a140-4d2f-881e-eb992698a0d8"
601
+ }
602
+ ],
603
+ "workflow_index": 2,
604
+ "workflow_step_type": "Measure",
605
+ "uuid": "29202cd9-6731-4362-bc3f-4010b8edc087",
606
+ "version_uuid": "b40291c2-58d0-47c3-a142-1e5d673c1247"
607
+ },
608
+ {
609
+ "measure_definition_class_name": "IncreaseInsulationRValueForRoofs",
610
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
611
+ "measure_definition_display_name": "IncreaseInsulationRValueForRoofs",
612
+ "measure_definition_uuid": "42f78bd4-7816-4fc7-869d-10bb8baf2db9",
613
+ "measure_definition_version_uuid": "c08e98e6-a48c-4aeb-b197-69c03944f5c8",
614
+ "measure_type": "RubyMeasure",
615
+ "arguments": [
616
+ {
617
+ "display_name": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).",
618
+ "display_name_short": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).",
619
+ "name": "material_cost_increase_ip",
620
+ "value": 0.0,
621
+ "value_type": "double"
622
+ },
623
+ {
624
+ "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).",
625
+ "display_name_short": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).",
626
+ "name": "one_time_retrofit_cost_ip",
627
+ "value": 0.0,
628
+ "value_type": "double"
629
+ },
630
+ {
631
+ "display_name": "Year to Incur One Time Retrofit Cost (whole years).",
632
+ "display_name_short": "Year to Incur One Time Retrofit Cost (whole years).",
633
+ "name": "years_until_retrofit_cost",
634
+ "value": 0,
635
+ "value_type": "integer"
636
+ }
637
+ ],
638
+ "display_name": "Set R-value of Insulation for Roofs to a Specific Value",
639
+ "name": "set_r_value_of_insulation_for_roofs_to_a_specific_value",
640
+ "variables": [
641
+ {
642
+ "argument": {
643
+ "display_name": "Roof R-Value",
644
+ "display_name_short": "Roof R-Value",
645
+ "name": "r_value",
646
+ "value_type": "double"
647
+ },
648
+ "display_name": "Roof R-Value",
649
+ "display_name_short": "Roof R-Value",
650
+ "maximum": 80.0,
651
+ "minimum": 10.0,
652
+ "relation_to_output": "",
653
+ "static_value": 10.0,
654
+ "uncertainty_description": {
655
+ "attributes": [
656
+ {
657
+ "name": "discrete",
658
+ "values_and_weights": [
659
+ {
660
+ "value": 10,
661
+ "weight": 0.05
662
+ },
663
+ {
664
+ "value": 30,
665
+ "weight": 0.1
666
+ },
667
+ {
668
+ "value": 50,
669
+ "weight": 0.45
670
+ },
671
+ {
672
+ "value": 80,
673
+ "weight": 0.4
674
+ }
675
+ ]
676
+ },
677
+ {
678
+ "name": "lower_bounds",
679
+ "value": 10.0
680
+ },
681
+ {
682
+ "name": "upper_bounds",
683
+ "value": 80.0
684
+ },
685
+ {
686
+ "name": "modes",
687
+ "value": 50.0
688
+ }
689
+ ],
690
+ "type": "discrete_uncertain"
691
+ },
692
+ "units": "",
693
+ "value_type": "double",
694
+ "variable": true,
695
+ "variable_type": "RubyContinuousVariable",
696
+ "uuid": "ff774b53-c7ae-4cc9-8fd3-4e3076031689",
697
+ "version_uuid": "dee52864-8285-486e-a1f6-b2fdda8684e7"
698
+ }
699
+ ],
700
+ "workflow_index": 3,
701
+ "workflow_step_type": "Measure",
702
+ "uuid": "42c203cc-99ff-4c1a-9f0c-271f52ebcdcc",
703
+ "version_uuid": "299aef93-1ad2-4973-a5ad-a77d16ca375d"
704
+ },
705
+ {
706
+ "measure_definition_class_name": "SetWindowToWallRatioByFacade",
707
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
708
+ "measure_definition_display_name": "SetWindowToWallRatioByFacade",
709
+ "measure_definition_uuid": "7e7aa270-b2d2-4087-b35d-e517fc15fab4",
710
+ "measure_definition_version_uuid": "1bc98600-eb73-438f-b9b3-ca29c293bea0",
711
+ "measure_type": "RubyMeasure",
712
+ "arguments": [
713
+ {
714
+ "display_name": "Sill Height (in).",
715
+ "display_name_short": "Sill Height (in).",
716
+ "name": "sillHeight",
717
+ "value": 30.0,
718
+ "value_type": "double"
719
+ },
720
+ {
721
+ "display_name": "Cardinal Direction.",
722
+ "display_name_short": "Cardinal Direction.",
723
+ "name": "facade",
724
+ "value": "South",
725
+ "value_type": "choice"
726
+ }
727
+ ],
728
+ "display_name": "Window to Wall Ratio South",
729
+ "name": "window_to_wall_ratio_south",
730
+ "variables": [
731
+ {
732
+ "argument": {
733
+ "display_name": "South WWR",
734
+ "display_name_short": "South WWR",
735
+ "name": "wwr",
736
+ "value_type": "double"
737
+ },
738
+ "display_name": "South WWR",
739
+ "display_name_short": "South WWR",
740
+ "maximum": 0.95,
741
+ "minimum": 0.05,
742
+ "relation_to_output": "",
743
+ "static_value": 0.4,
744
+ "uncertainty_description": {
745
+ "attributes": [
746
+ {
747
+ "name": "lower_bounds",
748
+ "value": 0.05
749
+ },
750
+ {
751
+ "name": "upper_bounds",
752
+ "value": 0.95
753
+ },
754
+ {
755
+ "name": "stddev",
756
+ "value": 0.15
757
+ },
758
+ {
759
+ "name": "delta_x",
760
+ "value": null
761
+ },
762
+ {
763
+ "name": "modes",
764
+ "value": 0.4
765
+ }
766
+ ],
767
+ "type": "triangle_uncertain"
768
+ },
769
+ "units": "",
770
+ "value_type": "double",
771
+ "variable": true,
772
+ "variable_type": "RubyContinuousVariable",
773
+ "uuid": "01468d09-874b-4279-9fd7-c3665b5026ea",
774
+ "version_uuid": "9c9d98de-0748-4ce3-b417-2eed94cafc40"
775
+ }
776
+ ],
777
+ "workflow_index": 4,
778
+ "workflow_step_type": "Measure",
779
+ "uuid": "7ce9bc37-f47d-4a3c-9301-535d52c19902",
780
+ "version_uuid": "5f024fb0-b6e2-4af3-a044-beced40774c7"
781
+ },
782
+ {
783
+ "measure_definition_class_name": "SetWindowToWallRatioByFacade",
784
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
785
+ "measure_definition_display_name": "SetWindowToWallRatioByFacade",
786
+ "measure_definition_uuid": "d5deaffa-9820-4218-b3b6-29bd95c51173",
787
+ "measure_definition_version_uuid": "069a4d33-1b84-4a4e-9d3a-c106353615f5",
788
+ "measure_type": "RubyMeasure",
789
+ "arguments": [
790
+ {
791
+ "display_name": "Sill Height (in).",
792
+ "display_name_short": "Sill Height (in).",
793
+ "name": "sillHeight",
794
+ "value": 30.0,
795
+ "value_type": "double"
796
+ },
797
+ {
798
+ "display_name": "Cardinal Direction.",
799
+ "display_name_short": "Cardinal Direction.",
800
+ "name": "facade",
801
+ "value": "West",
802
+ "value_type": "choice"
803
+ }
804
+ ],
805
+ "display_name": "Window to Wall Ratio West",
806
+ "name": "window_to_wall_ratio_west",
807
+ "variables": [
808
+ {
809
+ "argument": {
810
+ "display_name": "West WWR",
811
+ "display_name_short": "West WWR",
812
+ "name": "wwr",
813
+ "value_type": "double"
814
+ },
815
+ "display_name": "West WWR",
816
+ "display_name_short": "West WWR",
817
+ "maximum": 0.95,
818
+ "minimum": 0.05,
819
+ "relation_to_output": "",
820
+ "static_value": 0.4,
821
+ "uncertainty_description": {
822
+ "attributes": [
823
+ {
824
+ "name": "lower_bounds",
825
+ "value": 0.05
826
+ },
827
+ {
828
+ "name": "upper_bounds",
829
+ "value": 0.95
830
+ },
831
+ {
832
+ "name": "stddev",
833
+ "value": 0.15
834
+ },
835
+ {
836
+ "name": "delta_x",
837
+ "value": null
838
+ },
839
+ {
840
+ "name": "modes",
841
+ "value": 0.4
842
+ }
843
+ ],
844
+ "type": "triangle_uncertain"
845
+ },
846
+ "units": "",
847
+ "value_type": "double",
848
+ "variable": true,
849
+ "variable_type": "RubyContinuousVariable",
850
+ "uuid": "a9f16186-2554-4fbc-b97a-84a3c5021f6b",
851
+ "version_uuid": "5249c8eb-8b5a-434b-a813-3e797c459f8b"
852
+ }
853
+ ],
854
+ "workflow_index": 5,
855
+ "workflow_step_type": "Measure",
856
+ "uuid": "6e08234f-2762-4949-a51e-f50e3a9b67e3",
857
+ "version_uuid": "818aac9d-36c9-42d9-9f44-441e32e25eb0"
858
+ },
859
+ {
860
+ "measure_definition_class_name": "SetWindowToWallRatioByFacade",
861
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
862
+ "measure_definition_display_name": "SetWindowToWallRatioByFacade",
863
+ "measure_definition_uuid": "8651bf41-00cb-44f9-809e-10fcb3f550b7",
864
+ "measure_definition_version_uuid": "68f478ce-70f1-4d36-a7e2-19307058a43c",
865
+ "measure_type": "RubyMeasure",
866
+ "arguments": [
867
+ {
868
+ "display_name": "Sill Height (in).",
869
+ "display_name_short": "Sill Height (in).",
870
+ "name": "sillHeight",
871
+ "value": 30.0,
872
+ "value_type": "double"
873
+ },
874
+ {
875
+ "display_name": "Cardinal Direction.",
876
+ "display_name_short": "Cardinal Direction.",
877
+ "name": "facade",
878
+ "value": "East",
879
+ "value_type": "choice"
880
+ }
881
+ ],
882
+ "display_name": "Window to Wall Ratio East",
883
+ "name": "window_to_wall_ratio_east",
884
+ "variables": [
885
+ {
886
+ "argument": {
887
+ "display_name": "East WWR",
888
+ "display_name_short": "East WWR",
889
+ "name": "wwr",
890
+ "value_type": "double"
891
+ },
892
+ "display_name": "East WWR",
893
+ "display_name_short": "East WWR",
894
+ "maximum": 0.95,
895
+ "minimum": 0.05,
896
+ "relation_to_output": "",
897
+ "static_value": 0.4,
898
+ "uncertainty_description": {
899
+ "attributes": [
900
+ {
901
+ "name": "lower_bounds",
902
+ "value": 0.05
903
+ },
904
+ {
905
+ "name": "upper_bounds",
906
+ "value": 0.95
907
+ },
908
+ {
909
+ "name": "stddev",
910
+ "value": 0.15
911
+ },
912
+ {
913
+ "name": "delta_x",
914
+ "value": null
915
+ },
916
+ {
917
+ "name": "modes",
918
+ "value": 0.4
919
+ }
920
+ ],
921
+ "type": "triangle_uncertain"
922
+ },
923
+ "units": "",
924
+ "value_type": "double",
925
+ "variable": true,
926
+ "variable_type": "RubyContinuousVariable",
927
+ "uuid": "602e7217-eb92-4f03-afb5-bfb86840bfa0",
928
+ "version_uuid": "5d8efa87-7082-4224-96ef-7fe2098e2d9e"
929
+ }
930
+ ],
931
+ "workflow_index": 6,
932
+ "workflow_step_type": "Measure",
933
+ "uuid": "d8c10df4-ee9c-4d94-8827-aa082a27bcf7",
934
+ "version_uuid": "a770aeda-eb8a-4138-9f75-ca18aab4ace1"
935
+ },
936
+ {
937
+ "measure_definition_class_name": "AddOverhangsByProjectionFactor",
938
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
939
+ "measure_definition_display_name": "AddOverhangsByProjectionFactor",
940
+ "measure_definition_uuid": "658dfb66-a9c5-49b1-bd9a-572801c485c9",
941
+ "measure_definition_version_uuid": "8e8aac3d-7d26-4ca0-b0d5-d5cda7bf50f4",
942
+ "measure_type": "RubyMeasure",
943
+ "arguments": [
944
+ {
945
+ "display_name": "Cardinal Direction",
946
+ "display_name_short": "Cardinal Direction",
947
+ "name": "facade",
948
+ "value": "South",
949
+ "value_type": "choice"
950
+ },
951
+ {
952
+ "display_name": "Remove Existing Space Shading Surfaces From the Model?",
953
+ "display_name_short": "Remove Existing Space Shading Surfaces From the Model?",
954
+ "name": "remove_ext_space_shading",
955
+ "value": false,
956
+ "value_type": "bool"
957
+ }
958
+ ],
959
+ "display_name": "Overhangs PF South",
960
+ "name": "overhangs_pf_south",
961
+ "variables": [
962
+ {
963
+ "argument": {
964
+ "display_name": "South Projection Factor",
965
+ "display_name_short": "South PF",
966
+ "name": "projection_factor",
967
+ "value_type": "integer"
968
+ },
969
+ "display_name": "South Projection Factor",
970
+ "display_name_short": "South PF",
971
+ "maximum": 10,
972
+ "minimum": 0,
973
+ "relation_to_output": "",
974
+ "static_value": 0,
975
+ "uncertainty_description": {
976
+ "attributes": [
977
+ {
978
+ "name": "discrete",
979
+ "values_and_weights": [
980
+ {
981
+ "value": 1
982
+ },
983
+ {
984
+ "value": 2
985
+ },
986
+ {
987
+ "value": 3
988
+ },
989
+ {
990
+ "value": 4
991
+ }
992
+ ]
993
+ },
994
+ {
995
+ "name": "lower_bounds",
996
+ "value": 0
997
+ },
998
+ {
999
+ "name": "upper_bounds",
1000
+ "value": 10
1001
+ },
1002
+ {
1003
+ "name": "modes",
1004
+ "value": 5
1005
+ }
1006
+ ],
1007
+ "type": "discrete_uncertain"
1008
+ },
1009
+ "units": "",
1010
+ "value_type": "integer",
1011
+ "variable": true,
1012
+ "variable_type": "RubyContinuousVariable",
1013
+ "uuid": "d2c727af-6e59-4fab-9f3c-14aef188d6a4",
1014
+ "version_uuid": "94a1f637-94ce-459b-af89-9c986e017933"
1015
+ }
1016
+ ],
1017
+ "workflow_index": 7,
1018
+ "workflow_step_type": "Measure",
1019
+ "uuid": "0ce4cfce-b662-4ae0-98ac-76b0a5aa6362",
1020
+ "version_uuid": "f573e84e-c351-4785-be5b-6fdace417334"
1021
+ },
1022
+ {
1023
+ "measure_definition_class_name": "AddOverhangsByProjectionFactor",
1024
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
1025
+ "measure_definition_display_name": "AddOverhangsByProjectionFactor",
1026
+ "measure_definition_uuid": "5c38a3c3-b0b6-4b5b-ad29-cac0cd304f2a",
1027
+ "measure_definition_version_uuid": "18b0162b-8a64-43ac-ad92-327f3f773ccf",
1028
+ "measure_type": "RubyMeasure",
1029
+ "arguments": [
1030
+ {
1031
+ "display_name": "Cardinal Direction",
1032
+ "display_name_short": "Cardinal Direction",
1033
+ "name": "facade",
1034
+ "value": "East",
1035
+ "value_type": "choice"
1036
+ }
1037
+ ],
1038
+ "display_name": "Overhangs PF East",
1039
+ "name": "overhangs_pf_east",
1040
+ "variables": [
1041
+ {
1042
+ "argument": {
1043
+ "display_name": "East Projection Factor",
1044
+ "display_name_short": "East PF",
1045
+ "name": "projection_factor",
1046
+ "value_type": "double"
1047
+ },
1048
+ "display_name": "East Projection Factor",
1049
+ "display_name_short": "East PF",
1050
+ "maximum": 1.0,
1051
+ "minimum": 0.0,
1052
+ "relation_to_output": "",
1053
+ "static_value": 0.0,
1054
+ "uncertainty_description": {
1055
+ "attributes": [
1056
+ {
1057
+ "name": "lower_bounds",
1058
+ "value": 0.0
1059
+ },
1060
+ {
1061
+ "name": "upper_bounds",
1062
+ "value": 1.0
1063
+ },
1064
+ {
1065
+ "name": "stddev",
1066
+ "value": 0.133333333
1067
+ },
1068
+ {
1069
+ "name": "delta_x",
1070
+ "value": null
1071
+ },
1072
+ {
1073
+ "name": "modes",
1074
+ "value": 0.5
1075
+ }
1076
+ ],
1077
+ "type": "uniform_uncertain"
1078
+ },
1079
+ "units": "",
1080
+ "value_type": "double",
1081
+ "variable": true,
1082
+ "variable_type": "RubyContinuousVariable",
1083
+ "uuid": "0ab54b17-c57f-40d9-9d0d-ea124566ac39",
1084
+ "version_uuid": "649b0b17-3e30-4b3a-81f0-97559c5c42e3"
1085
+ },
1086
+ {
1087
+ "argument": {
1088
+ "display_name": "Remove Existing Space Shading Surfaces From the Model?",
1089
+ "display_name_short": "Remove Existing Space Shading Surfaces From the Model?",
1090
+ "name": "remove_ext_space_shading",
1091
+ "value_type": "bool"
1092
+ },
1093
+ "display_name": "Remove Existing Space Shading Surfaces From the Model?",
1094
+ "display_name_short": "Remove Existing Space Shading Surfaces From the Model?",
1095
+ "maximum": true,
1096
+ "minimum": null,
1097
+ "relation_to_output": "",
1098
+ "static_value": false,
1099
+ "uncertainty_description": {
1100
+ "attributes": [
1101
+ {
1102
+ "name": "discrete",
1103
+ "values_and_weights": [
1104
+ {
1105
+ "value": false
1106
+ },
1107
+ {
1108
+ "value": true
1109
+ }
1110
+ ]
1111
+ },
1112
+ {
1113
+ "name": "lower_bounds",
1114
+ "value": false
1115
+ },
1116
+ {
1117
+ "name": "upper_bounds",
1118
+ "value": true
1119
+ },
1120
+ {
1121
+ "name": "modes",
1122
+ "value": true
1123
+ }
1124
+ ],
1125
+ "type": "discrete_uncertain"
1126
+ },
1127
+ "units": "",
1128
+ "value_type": "bool",
1129
+ "variable": true,
1130
+ "variable_type": "RubyContinuousVariable",
1131
+ "uuid": "5331f976-6616-4667-a5b9-64f4d011b444",
1132
+ "version_uuid": "6cc31692-53d0-4a25-9391-3750e3ad76f3"
1133
+ }
1134
+ ],
1135
+ "workflow_index": 8,
1136
+ "workflow_step_type": "Measure",
1137
+ "uuid": "3f7bcbc0-510f-480b-8e82-0038db93ea27",
1138
+ "version_uuid": "653141fc-c332-4eff-bd07-19f257f78232"
1139
+ },
1140
+ {
1141
+ "measure_definition_class_name": "XcelEDATariffSelectionandModelSetup",
1142
+ "measure_definition_directory": "./measures/SetThermostatSchedules",
1143
+ "measure_definition_display_name": "XcelEDATariffSelectionandModelSetup",
1144
+ "measure_definition_uuid": "38fb7800-4712-40dd-9741-9376fb05acd7",
1145
+ "measure_definition_version_uuid": "ad2da31b-ef90-41b6-9660-99eec12d1450",
1146
+ "measure_type": "EnergyPlusMeasure",
1147
+ "arguments": [
1148
+ {
1149
+ "display_name": "Select an Electricity Tariff.",
1150
+ "display_name_short": "Select an Electricity Tariff.",
1151
+ "name": "elec_tar",
1152
+ "value": "Secondary General",
1153
+ "value_type": "choice"
1154
+ },
1155
+ {
1156
+ "display_name": "Select a Gas Tariff.",
1157
+ "display_name_short": "Select a Gas Tariff.",
1158
+ "name": "gas_tar",
1159
+ "value": "Large CG",
1160
+ "value_type": "choice"
1161
+ }
1162
+ ],
1163
+ "display_name": "Xcel EDA Tariff Selection and Model Setup",
1164
+ "name": "xcel_eda_tariff_selection_and_model_setup",
1165
+ "variables": [
1166
+
1167
+ ],
1168
+ "workflow_index": 9,
1169
+ "workflow_step_type": "Measure",
1170
+ "uuid": "a378287c-280d-49f0-b982-12007ee9f2ce",
1171
+ "version_uuid": "de44f247-43dd-4012-8fa3-d61b568169ac"
1172
+ }
1173
+ ],
1174
+ "analysis_type": "lhs"
1175
+ },
1176
+ "seed": {
1177
+ "file_type": "OSM",
1178
+ "path": "./seed/small_seed.osm"
1179
+ },
1180
+ "weather_file": {
1181
+ "file_type": "EPW",
1182
+ "path": "./weather/partial_weather.epw"
1183
+ }
1184
+ }
1185
+ }