openstudio-analysis 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/openstudio/analysis/server_api.rb +2 -4
- data/lib/openstudio/analysis/translator/excel.rb +37 -29
- data/lib/openstudio/analysis/version.rb +1 -1
- data/lib/openstudio/helpers/string.rb +6 -6
- data/spec/files/analysis/medium_office.json +192 -192
- data/spec/files/analysis/medium_office.zip +0 -0
- data/spec/files/export/analysis/Kats model v2.json +16 -16
- data/spec/files/export/analysis/Kats model v2.zip +0 -0
- data/spec/files/export/analysis/discrete_dynamic_seed.json +16 -16
- data/spec/files/export/analysis/discrete_dynamic_seed.zip +0 -0
- data/spec/files/export/analysis/discrete_seed.json +91 -91
- data/spec/files/export/analysis/discrete_seed.zip +0 -0
- data/spec/files/export/analysis/output_vars.json +83 -83
- data/spec/files/export/analysis/output_vars.zip +0 -0
- data/spec/files/export/analysis/small_seed.json +83 -83
- data/spec/files/export/analysis/small_seed.zip +0 -0
- data/spec/files/measures/IncreaseInsulationRValueForRoofs/measure.rb +0 -350
- data/spec/openstudio/analysis/translator/excel_spec.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 402c672f553efd965c058dd968a2f711bbe0705d
|
4
|
+
data.tar.gz: 9e9660e44b9f65a9efa67ef429bca863bd22242a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ee850491dd6d6049d3532ed1766127f578fe7f8f951892523fec24e0bb860f17093c40b64dcd5902cf8a4f1daa42d84ec3076d9c14498edd3d755a48f8de5e1
|
7
|
+
data.tar.gz: 1ba1d7b68bf7b9adcf1d184583fa4a8fd7a6afd29dc4762fa5614b5395b668c6f441cc0c222ae2537d131c5ff9bb687357cdd983322d06d2fc9019f1192b4e12
|
@@ -71,7 +71,7 @@ module OpenStudio
|
|
71
71
|
project_id = nil
|
72
72
|
|
73
73
|
# TODO: make this a display name and a machine name
|
74
|
-
|
74
|
+
project_hash = { project: { name: "#{options[:project_name]}" } }
|
75
75
|
|
76
76
|
response = @conn.post do |req|
|
77
77
|
req.url '/projects.json'
|
@@ -135,9 +135,7 @@ module OpenStudio
|
|
135
135
|
if wf[:variables]
|
136
136
|
wf[:variables].each do |var|
|
137
137
|
var[:uuid] = UUID.new.generate
|
138
|
-
if var[:argument]
|
139
|
-
var[:argument][:uuid] = UUID.new.generate
|
140
|
-
end
|
138
|
+
var[:argument][:uuid] = UUID.new.generate if var[:argument]
|
141
139
|
end
|
142
140
|
end
|
143
141
|
end
|
@@ -222,26 +222,31 @@ module OpenStudio
|
|
222
222
|
if @variable['variable_type'] == 'argument'
|
223
223
|
ag = nil
|
224
224
|
if @variable['method'] == 'static'
|
225
|
-
|
226
|
-
|
225
|
+
if @variable['distribution']['static_value'].nil? || @variable['distribution']['static_value'] == 'null'
|
226
|
+
puts " Warning: '#{measure['name']}:#{@variable['name']}' static value was empty or null, assuming optional and skipping"
|
227
|
+
next
|
227
228
|
end
|
229
|
+
# unless @variable['distribution']['static_value']
|
230
|
+
# fail 'Cannot have an argument that is not a static value defined in which to set the argument'
|
231
|
+
# end
|
228
232
|
|
229
233
|
# add this as an argument
|
230
234
|
case @variable['type'].downcase
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
@static_value = false
|
242
|
-
end
|
235
|
+
when 'double'
|
236
|
+
@static_value = @variable['distribution']['static_value'].to_f
|
237
|
+
when 'integer'
|
238
|
+
@static_value = @variable['distribution']['static_value'].to_i
|
239
|
+
# TODO: update openstudio export to write only Strings
|
240
|
+
when 'string', 'choice'
|
241
|
+
@static_value = @variable['distribution']['static_value'].inspect
|
242
|
+
when 'bool'
|
243
|
+
if @variable['distribution']['static_value'].downcase == 'true'
|
244
|
+
@static_value = true
|
243
245
|
else
|
244
|
-
|
246
|
+
@static_value = false
|
247
|
+
end
|
248
|
+
else
|
249
|
+
fail "Unknown variable type of '#{@variable['type']}'"
|
245
250
|
end
|
246
251
|
ag = JSON.parse(argument_template.result(get_binding))
|
247
252
|
end
|
@@ -273,7 +278,7 @@ module OpenStudio
|
|
273
278
|
end
|
274
279
|
|
275
280
|
if weights
|
276
|
-
fail "Discrete variable #{@variable['name']} does not have equal length of values and weights" if values.size != weights.size
|
281
|
+
fail "Discrete variable '#{@variable['name']}' does not have equal length of values and weights" if values.size != weights.size
|
277
282
|
@values_and_weights = values.zip(weights).map { |v, w| { value: v, weight: w } }.to_json
|
278
283
|
else
|
279
284
|
@values_and_weights = values.map { |v| { value: v } }.to_json
|
@@ -311,17 +316,17 @@ module OpenStudio
|
|
311
316
|
binding
|
312
317
|
end
|
313
318
|
|
314
|
-
def add_directory_to_zip(zipfile, local_directory, relative_zip_directory)
|
315
|
-
# pp "Add Directory #{local_directory}"
|
316
|
-
Dir[File.join("#{local_directory}", '**', '**')].each do |file|
|
317
|
-
# pp "Adding File #{file}"
|
318
|
-
zipfile.add(file.sub(local_directory, relative_zip_directory), file)
|
319
|
-
end
|
320
|
-
zipfile
|
321
|
-
end
|
322
|
-
|
323
319
|
# Package up the seed, weather files, and measures
|
324
320
|
def save_analysis_zip(model)
|
321
|
+
def add_directory_to_zip(zipfile, local_directory, relative_zip_directory)
|
322
|
+
# pp "Add Directory #{local_directory}"
|
323
|
+
Dir[File.join("#{local_directory}", '**', '**')].each do |file|
|
324
|
+
# pp "Adding File #{file}"
|
325
|
+
zipfile.add(file.sub(local_directory, relative_zip_directory), file)
|
326
|
+
end
|
327
|
+
zipfile
|
328
|
+
end
|
329
|
+
|
325
330
|
zipfile_name = "#{@export_path}/#{model[:name]}.zip"
|
326
331
|
FileUtils.rm_f(zipfile_name) if File.exist?(zipfile_name)
|
327
332
|
|
@@ -674,7 +679,7 @@ module OpenStudio
|
|
674
679
|
var['distribution']['enumerations'] = row[:enums].gsub('|', '').split(',').map { |v| v.strip }
|
675
680
|
elsif var['type'] == 'bool'
|
676
681
|
var['distribution']['enumerations'] = []
|
677
|
-
var['distribution']['enumerations'] << 'true' #
|
682
|
+
var['distribution']['enumerations'] << 'true' # TODO: should this be a real bool?
|
678
683
|
var['distribution']['enumerations'] << 'false'
|
679
684
|
end
|
680
685
|
|
@@ -702,15 +707,18 @@ module OpenStudio
|
|
702
707
|
data['data'][measure_index] = {}
|
703
708
|
|
704
709
|
# generate name id
|
705
|
-
#
|
710
|
+
# TODO: put this into a logger. puts "Parsing measure #{row[1]}"
|
706
711
|
display_name = row[:measure_name_or_var_type]
|
707
712
|
measure_name = display_name.downcase.strip.gsub('-', '_').gsub(' ', '_')
|
708
713
|
data['data'][measure_index]['display_name'] = display_name
|
709
714
|
data['data'][measure_index]['name'] = measure_name
|
710
715
|
data['data'][measure_index]['enabled'] = row[:enabled] == 'TRUE' ? true : false
|
711
716
|
data['data'][measure_index]['measure_file_name'] = row[:measure_file_name_or_var_display_name]
|
712
|
-
|
713
|
-
|
717
|
+
if row[:measure_file_name_directory]
|
718
|
+
data['data'][measure_index]['measure_file_name_directory'] = row[:measure_file_name_directory]
|
719
|
+
else
|
720
|
+
data['data'][measure_index]['measure_file_name_directory'] = row[:measure_file_name_or_var_display_name].underscore
|
721
|
+
end
|
714
722
|
data['data'][measure_index]['measure_type'] = row[:measure_type_or_parameter_name_in_measure]
|
715
723
|
data['data'][measure_index]['version'] = @version_id
|
716
724
|
|
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
class String
|
4
4
|
def underscore
|
5
|
-
gsub(/::/, '/')
|
6
|
-
gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
|
7
|
-
gsub(/([a-z\d])([A-Z])/, '\1_\2')
|
8
|
-
tr('-', '_')
|
9
|
-
downcase
|
5
|
+
gsub(/::/, '/')
|
6
|
+
.gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
|
7
|
+
.gsub(/([a-z\d])([A-Z])/, '\1_\2')
|
8
|
+
.tr('-', '_')
|
9
|
+
.downcase
|
10
10
|
end
|
11
11
|
|
12
12
|
def snake_case
|
@@ -16,6 +16,6 @@ class String
|
|
16
16
|
def to_bool
|
17
17
|
return true if self == true || self =~ (/(true|t|yes|y|1)$/i)
|
18
18
|
return false if self == false || self =~ (/(false|f|no|n|0)$/i)
|
19
|
-
fail
|
19
|
+
fail "invalid value for Boolean: '#{self}'"
|
20
20
|
end
|
21
21
|
end
|
@@ -316,8 +316,8 @@
|
|
316
316
|
"name": "space_type",
|
317
317
|
"value": "*Entire Building*",
|
318
318
|
"value_type": "choice",
|
319
|
-
"uuid": "
|
320
|
-
"version_uuid": "
|
319
|
+
"uuid": "28cf8fd0-b2d4-0131-96d0-14109fdf0b37",
|
320
|
+
"version_uuid": "28d01640-b2d4-0131-96d1-14109fdf0b37"
|
321
321
|
},
|
322
322
|
{
|
323
323
|
"display_name": "Increase in Material and Installation Cost for Lighting per Floor Area (%).",
|
@@ -325,8 +325,8 @@
|
|
325
325
|
"name": "material_and_installation_cost",
|
326
326
|
"value": 0.0,
|
327
327
|
"value_type": "double",
|
328
|
-
"uuid": "
|
329
|
-
"version_uuid": "
|
328
|
+
"uuid": "28d06a20-b2d4-0131-96d3-14109fdf0b37",
|
329
|
+
"version_uuid": "28d08530-b2d4-0131-96d4-14109fdf0b37"
|
330
330
|
},
|
331
331
|
{
|
332
332
|
"display_name": "Increase in Demolition Costs for Lighting per Floor Area (%).",
|
@@ -334,8 +334,8 @@
|
|
334
334
|
"name": "demolition_cost",
|
335
335
|
"value": 0.0,
|
336
336
|
"value_type": "double",
|
337
|
-
"uuid": "
|
338
|
-
"version_uuid": "
|
337
|
+
"uuid": "28d0a450-b2d4-0131-96d5-14109fdf0b37",
|
338
|
+
"version_uuid": "28d0cac0-b2d4-0131-96d6-14109fdf0b37"
|
339
339
|
},
|
340
340
|
{
|
341
341
|
"display_name": "Years Until Costs Start (whole years).",
|
@@ -343,8 +343,8 @@
|
|
343
343
|
"name": "years_until_costs_start",
|
344
344
|
"value": 0,
|
345
345
|
"value_type": "integer",
|
346
|
-
"uuid": "
|
347
|
-
"version_uuid": "
|
346
|
+
"uuid": "28d0e920-b2d4-0131-96d7-14109fdf0b37",
|
347
|
+
"version_uuid": "28d10660-b2d4-0131-96d8-14109fdf0b37"
|
348
348
|
},
|
349
349
|
{
|
350
350
|
"display_name": "Demolition Costs Occur During Initial Construction?",
|
@@ -352,8 +352,8 @@
|
|
352
352
|
"name": "demo_cost_initial_const",
|
353
353
|
"value": true,
|
354
354
|
"value_type": "bool",
|
355
|
-
"uuid": "
|
356
|
-
"version_uuid": "
|
355
|
+
"uuid": "28d3a0e0-b2d4-0131-96d9-14109fdf0b37",
|
356
|
+
"version_uuid": "28d3ba60-b2d4-0131-96da-14109fdf0b37"
|
357
357
|
},
|
358
358
|
{
|
359
359
|
"display_name": "Expected Life (whole years).",
|
@@ -361,8 +361,8 @@
|
|
361
361
|
"name": "expected_life",
|
362
362
|
"value": 15,
|
363
363
|
"value_type": "integer",
|
364
|
-
"uuid": "
|
365
|
-
"version_uuid": "
|
364
|
+
"uuid": "28d3dc50-b2d4-0131-96db-14109fdf0b37",
|
365
|
+
"version_uuid": "28d3f970-b2d4-0131-96dc-14109fdf0b37"
|
366
366
|
},
|
367
367
|
{
|
368
368
|
"display_name": "Increase O & M Costs for Lighting per Floor Area (%).",
|
@@ -370,8 +370,8 @@
|
|
370
370
|
"name": "om_cost",
|
371
371
|
"value": 0.0,
|
372
372
|
"value_type": "double",
|
373
|
-
"uuid": "
|
374
|
-
"version_uuid": "
|
373
|
+
"uuid": "28d41800-b2d4-0131-96dd-14109fdf0b37",
|
374
|
+
"version_uuid": "28d43110-b2d4-0131-96de-14109fdf0b37"
|
375
375
|
},
|
376
376
|
{
|
377
377
|
"display_name": "O & M Frequency (whole years).",
|
@@ -379,29 +379,29 @@
|
|
379
379
|
"name": "om_frequency",
|
380
380
|
"value": 1,
|
381
381
|
"value_type": "integer",
|
382
|
-
"uuid": "
|
383
|
-
"version_uuid": "
|
382
|
+
"uuid": "28d44f00-b2d4-0131-96df-14109fdf0b37",
|
383
|
+
"version_uuid": "28d46e10-b2d4-0131-96e0-14109fdf0b37"
|
384
384
|
}
|
385
385
|
],
|
386
386
|
"bcl_measure_directory": "./measures/ReduceLightingLoadsByPercentage",
|
387
387
|
"bcl_measure_class_name": "ReduceLightingLoadsByPercentage",
|
388
|
-
"bcl_measure_uuid": "
|
389
|
-
"bcl_measure_version_uuid": "
|
388
|
+
"bcl_measure_uuid": "28cda5f0-b2d4-0131-96ca-14109fdf0b37",
|
389
|
+
"bcl_measure_version_uuid": "28cdecd0-b2d4-0131-96cb-14109fdf0b37",
|
390
390
|
"measure_definition_directory": "./measures/ReduceLightingLoadsByPercentage",
|
391
391
|
"measure_definition_class_name": "ReduceLightingLoadsByPercentage",
|
392
|
-
"measure_definition_uuid": "
|
393
|
-
"measure_definition_version_uuid": "
|
392
|
+
"measure_definition_uuid": "28ce0670-b2d4-0131-96cc-14109fdf0b37",
|
393
|
+
"measure_definition_version_uuid": "28ce29f0-b2d4-0131-96cd-14109fdf0b37",
|
394
394
|
"measure_type": "RubyMeasure",
|
395
395
|
"name": "reduce_lighting_loads_by_percentage",
|
396
396
|
"display_name": "Reduce Lighting Loads by Percentage",
|
397
|
-
"uuid": "
|
397
|
+
"uuid": "28ce53d0-b2d4-0131-96ce-14109fdf0b37",
|
398
398
|
"variables": [
|
399
399
|
{
|
400
400
|
"argument": {
|
401
401
|
"display_name": "Lighting Power Reduction",
|
402
402
|
"machine_name": "lighting_power_reduction",
|
403
403
|
"name": "lighting_power_reduction_percent",
|
404
|
-
"uuid": "
|
404
|
+
"uuid": "28d03d60-b2d4-0131-96d2-14109fdf0b37",
|
405
405
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
406
406
|
},
|
407
407
|
"display_name": "Lighting Power Reduction",
|
@@ -443,7 +443,7 @@
|
|
443
443
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
444
444
|
}
|
445
445
|
],
|
446
|
-
"version_uuid": "
|
446
|
+
"version_uuid": "28cf6890-b2d4-0131-96cf-14109fdf0b37",
|
447
447
|
"workflow_index": 0,
|
448
448
|
"workflow_step_type": "Measure"
|
449
449
|
},
|
@@ -455,8 +455,8 @@
|
|
455
455
|
"name": "space_type",
|
456
456
|
"value": "*Entire Building*",
|
457
457
|
"value_type": "choice",
|
458
|
-
"uuid": "
|
459
|
-
"version_uuid": "
|
458
|
+
"uuid": "28d54130-b2d4-0131-96e7-14109fdf0b37",
|
459
|
+
"version_uuid": "28d55a80-b2d4-0131-96e8-14109fdf0b37"
|
460
460
|
},
|
461
461
|
{
|
462
462
|
"display_name": "Increase in Material and Installation Cost for Electric Equipment per Floor Area (%).",
|
@@ -464,8 +464,8 @@
|
|
464
464
|
"name": "material_and_installation_cost",
|
465
465
|
"value": 0.0,
|
466
466
|
"value_type": "double",
|
467
|
-
"uuid": "
|
468
|
-
"version_uuid": "
|
467
|
+
"uuid": "28d5b3c0-b2d4-0131-96ea-14109fdf0b37",
|
468
|
+
"version_uuid": "28d5d6e0-b2d4-0131-96eb-14109fdf0b37"
|
469
469
|
},
|
470
470
|
{
|
471
471
|
"display_name": "Increase in Demolition Costs for Electric Equipment per Floor Area (%).",
|
@@ -473,8 +473,8 @@
|
|
473
473
|
"name": "demolition_cost",
|
474
474
|
"value": 0.0,
|
475
475
|
"value_type": "double",
|
476
|
-
"uuid": "
|
477
|
-
"version_uuid": "
|
476
|
+
"uuid": "28d5fe90-b2d4-0131-96ec-14109fdf0b37",
|
477
|
+
"version_uuid": "28d62100-b2d4-0131-96ed-14109fdf0b37"
|
478
478
|
},
|
479
479
|
{
|
480
480
|
"display_name": "Years Until Costs Start (whole years).",
|
@@ -482,8 +482,8 @@
|
|
482
482
|
"name": "years_until_costs_start",
|
483
483
|
"value": 0,
|
484
484
|
"value_type": "integer",
|
485
|
-
"uuid": "
|
486
|
-
"version_uuid": "
|
485
|
+
"uuid": "28d64fe0-b2d4-0131-96ee-14109fdf0b37",
|
486
|
+
"version_uuid": "28d67af0-b2d4-0131-96ef-14109fdf0b37"
|
487
487
|
},
|
488
488
|
{
|
489
489
|
"display_name": "Demolition Costs Occur During Initial Construction?",
|
@@ -491,8 +491,8 @@
|
|
491
491
|
"name": "demo_cost_initial_const",
|
492
492
|
"value": false,
|
493
493
|
"value_type": "bool",
|
494
|
-
"uuid": "
|
495
|
-
"version_uuid": "
|
494
|
+
"uuid": "28d6b880-b2d4-0131-96f0-14109fdf0b37",
|
495
|
+
"version_uuid": "28d6e440-b2d4-0131-96f1-14109fdf0b37"
|
496
496
|
},
|
497
497
|
{
|
498
498
|
"display_name": "Expected Life (whole years).",
|
@@ -500,8 +500,8 @@
|
|
500
500
|
"name": "expected_life",
|
501
501
|
"value": 15,
|
502
502
|
"value_type": "integer",
|
503
|
-
"uuid": "
|
504
|
-
"version_uuid": "
|
503
|
+
"uuid": "28d70de0-b2d4-0131-96f2-14109fdf0b37",
|
504
|
+
"version_uuid": "28d72ca0-b2d4-0131-96f3-14109fdf0b37"
|
505
505
|
},
|
506
506
|
{
|
507
507
|
"display_name": "Increase O & M Costs for Electric Equipment per Floor Area (%).",
|
@@ -509,8 +509,8 @@
|
|
509
509
|
"name": "om_cost",
|
510
510
|
"value": 0.0,
|
511
511
|
"value_type": "double",
|
512
|
-
"uuid": "
|
513
|
-
"version_uuid": "
|
512
|
+
"uuid": "28d75770-b2d4-0131-96f4-14109fdf0b37",
|
513
|
+
"version_uuid": "28d78390-b2d4-0131-96f5-14109fdf0b37"
|
514
514
|
},
|
515
515
|
{
|
516
516
|
"display_name": "O & M Frequency (whole years).",
|
@@ -518,29 +518,29 @@
|
|
518
518
|
"name": "om_frequency",
|
519
519
|
"value": 1,
|
520
520
|
"value_type": "integer",
|
521
|
-
"uuid": "
|
522
|
-
"version_uuid": "
|
521
|
+
"uuid": "28d7b1b0-b2d4-0131-96f6-14109fdf0b37",
|
522
|
+
"version_uuid": "28d7d3f0-b2d4-0131-96f7-14109fdf0b37"
|
523
523
|
}
|
524
524
|
],
|
525
525
|
"bcl_measure_directory": "./measures/ReduceElectricEquipmentLoadsByPercentage",
|
526
526
|
"bcl_measure_class_name": "ReduceElectricEquipmentLoadsByPercentage",
|
527
|
-
"bcl_measure_uuid": "
|
528
|
-
"bcl_measure_version_uuid": "
|
527
|
+
"bcl_measure_uuid": "28d49060-b2d4-0131-96e1-14109fdf0b37",
|
528
|
+
"bcl_measure_version_uuid": "28d4bb90-b2d4-0131-96e2-14109fdf0b37",
|
529
529
|
"measure_definition_directory": "./measures/ReduceElectricEquipmentLoadsByPercentage",
|
530
530
|
"measure_definition_class_name": "ReduceElectricEquipmentLoadsByPercentage",
|
531
|
-
"measure_definition_uuid": "
|
532
|
-
"measure_definition_version_uuid": "
|
531
|
+
"measure_definition_uuid": "28d4d620-b2d4-0131-96e3-14109fdf0b37",
|
532
|
+
"measure_definition_version_uuid": "28d4efb0-b2d4-0131-96e4-14109fdf0b37",
|
533
533
|
"measure_type": "RubyMeasure",
|
534
534
|
"name": "reduce_electric_equipment_loads_by_percentage",
|
535
535
|
"display_name": "Reduce Electric Equipment Loads by Percentage",
|
536
|
-
"uuid": "
|
536
|
+
"uuid": "28d50ab0-b2d4-0131-96e5-14109fdf0b37",
|
537
537
|
"variables": [
|
538
538
|
{
|
539
539
|
"argument": {
|
540
540
|
"display_name": "Electric Equipment Power Reduction (%).",
|
541
541
|
"machine_name": "electric_equipment_power_reduction_(%).",
|
542
542
|
"name": "elecequip_power_reduction_percent",
|
543
|
-
"uuid": "
|
543
|
+
"uuid": "28d57b60-b2d4-0131-96e9-14109fdf0b37",
|
544
544
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
545
545
|
},
|
546
546
|
"display_name": "Electric Equipment Power Reduction (%).",
|
@@ -582,7 +582,7 @@
|
|
582
582
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
583
583
|
}
|
584
584
|
],
|
585
|
-
"version_uuid": "
|
585
|
+
"version_uuid": "28d523d0-b2d4-0131-96e6-14109fdf0b37",
|
586
586
|
"workflow_index": 1,
|
587
587
|
"workflow_step_type": "Measure"
|
588
588
|
},
|
@@ -594,8 +594,8 @@
|
|
594
594
|
"name": "space_type",
|
595
595
|
"value": "*Entire Building*",
|
596
596
|
"value_type": "choice",
|
597
|
-
"uuid": "
|
598
|
-
"version_uuid": "
|
597
|
+
"uuid": "28d8ab00-b2d4-0131-96fe-14109fdf0b37",
|
598
|
+
"version_uuid": "28d8c5b0-b2d4-0131-96ff-14109fdf0b37"
|
599
599
|
},
|
600
600
|
{
|
601
601
|
"display_name": "Increase in Material and Installation Costs for Building per Affected Floor Area ($/ft^2).",
|
@@ -603,8 +603,8 @@
|
|
603
603
|
"name": "material_and_installation_cost",
|
604
604
|
"value": 0.0,
|
605
605
|
"value_type": "double",
|
606
|
-
"uuid": "
|
607
|
-
"version_uuid": "
|
606
|
+
"uuid": "28d92300-b2d4-0131-9701-14109fdf0b37",
|
607
|
+
"version_uuid": "28d94030-b2d4-0131-9702-14109fdf0b37"
|
608
608
|
},
|
609
609
|
{
|
610
610
|
"display_name": "O & M Costs for Construction per Affected Floor Area ($/ft^2).",
|
@@ -612,8 +612,8 @@
|
|
612
612
|
"name": "om_cost",
|
613
613
|
"value": 0.0,
|
614
614
|
"value_type": "double",
|
615
|
-
"uuid": "
|
616
|
-
"version_uuid": "
|
615
|
+
"uuid": "28d96630-b2d4-0131-9703-14109fdf0b37",
|
616
|
+
"version_uuid": "28d98770-b2d4-0131-9704-14109fdf0b37"
|
617
617
|
},
|
618
618
|
{
|
619
619
|
"display_name": "O & M Frequency (whole years).",
|
@@ -621,29 +621,29 @@
|
|
621
621
|
"name": "om_frequency",
|
622
622
|
"value": 1,
|
623
623
|
"value_type": "integer",
|
624
|
-
"uuid": "
|
625
|
-
"version_uuid": "
|
624
|
+
"uuid": "28d9b580-b2d4-0131-9705-14109fdf0b37",
|
625
|
+
"version_uuid": "28d9d4f0-b2d4-0131-9706-14109fdf0b37"
|
626
626
|
}
|
627
627
|
],
|
628
628
|
"bcl_measure_directory": "./measures/ReduceSpaceInfiltrationByPercentage",
|
629
629
|
"bcl_measure_class_name": "ReduceSpaceInfiltrationByPercentage",
|
630
|
-
"bcl_measure_uuid": "
|
631
|
-
"bcl_measure_version_uuid": "
|
630
|
+
"bcl_measure_uuid": "28d7fec0-b2d4-0131-96f8-14109fdf0b37",
|
631
|
+
"bcl_measure_version_uuid": "28d81f70-b2d4-0131-96f9-14109fdf0b37",
|
632
632
|
"measure_definition_directory": "./measures/ReduceSpaceInfiltrationByPercentage",
|
633
633
|
"measure_definition_class_name": "ReduceSpaceInfiltrationByPercentage",
|
634
|
-
"measure_definition_uuid": "
|
635
|
-
"measure_definition_version_uuid": "
|
634
|
+
"measure_definition_uuid": "28d83dc0-b2d4-0131-96fa-14109fdf0b37",
|
635
|
+
"measure_definition_version_uuid": "28d85850-b2d4-0131-96fb-14109fdf0b37",
|
636
636
|
"measure_type": "RubyMeasure",
|
637
637
|
"name": "reducespaceinfiltrationbypercentage",
|
638
638
|
"display_name": "ReduceSpaceInfiltrationByPercentage",
|
639
|
-
"uuid": "
|
639
|
+
"uuid": "28d871f0-b2d4-0131-96fc-14109fdf0b37",
|
640
640
|
"variables": [
|
641
641
|
{
|
642
642
|
"argument": {
|
643
643
|
"display_name": "Space Infiltration Power Reduction",
|
644
644
|
"machine_name": "space_infiltration_power_reduction",
|
645
645
|
"name": "space_infiltration_reduction_percent",
|
646
|
-
"uuid": "
|
646
|
+
"uuid": "28d8f920-b2d4-0131-9700-14109fdf0b37",
|
647
647
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
648
648
|
},
|
649
649
|
"display_name": "Space Infiltration Power Reduction",
|
@@ -685,7 +685,7 @@
|
|
685
685
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
686
686
|
}
|
687
687
|
],
|
688
|
-
"version_uuid": "
|
688
|
+
"version_uuid": "28d88b00-b2d4-0131-96fd-14109fdf0b37",
|
689
689
|
"workflow_index": 2,
|
690
690
|
"workflow_step_type": "Measure"
|
691
691
|
},
|
@@ -697,29 +697,29 @@
|
|
697
697
|
"name": "alter_design_days",
|
698
698
|
"value": false,
|
699
699
|
"value_type": "bool",
|
700
|
-
"uuid": "
|
701
|
-
"version_uuid": "
|
700
|
+
"uuid": "28db1ce0-b2d4-0131-970f-14109fdf0b37",
|
701
|
+
"version_uuid": "28db36a0-b2d4-0131-9710-14109fdf0b37"
|
702
702
|
}
|
703
703
|
],
|
704
704
|
"bcl_measure_directory": "./measures/AdjustTheromstatSetpointsByDegrees",
|
705
705
|
"bcl_measure_class_name": "AdjustTheromstatSetpointsByDegrees",
|
706
|
-
"bcl_measure_uuid": "
|
707
|
-
"bcl_measure_version_uuid": "
|
706
|
+
"bcl_measure_uuid": "28d9ffc0-b2d4-0131-9707-14109fdf0b37",
|
707
|
+
"bcl_measure_version_uuid": "28da25c0-b2d4-0131-9708-14109fdf0b37",
|
708
708
|
"measure_definition_directory": "./measures/AdjustTheromstatSetpointsByDegrees",
|
709
709
|
"measure_definition_class_name": "AdjustTheromstatSetpointsByDegrees",
|
710
|
-
"measure_definition_uuid": "
|
711
|
-
"measure_definition_version_uuid": "
|
710
|
+
"measure_definition_uuid": "28da46a0-b2d4-0131-9709-14109fdf0b37",
|
711
|
+
"measure_definition_version_uuid": "28da65a0-b2d4-0131-970a-14109fdf0b37",
|
712
712
|
"measure_type": "RubyMeasure",
|
713
713
|
"name": "adjust_thermostat_setpoints_by_degrees",
|
714
714
|
"display_name": "Adjust Thermostat Setpoints by Degrees",
|
715
|
-
"uuid": "
|
715
|
+
"uuid": "28da8910-b2d4-0131-970b-14109fdf0b37",
|
716
716
|
"variables": [
|
717
717
|
{
|
718
718
|
"argument": {
|
719
719
|
"display_name": "Degrees Fahrenheit to Adjust Cooling Setpoint By.",
|
720
720
|
"machine_name": "degrees_fahrenheit_to_adjust_cooling_setpoint_by.",
|
721
721
|
"name": "cooling_adjustment",
|
722
|
-
"uuid": "
|
722
|
+
"uuid": "28dad980-b2d4-0131-970d-14109fdf0b37",
|
723
723
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
724
724
|
},
|
725
725
|
"display_name": "Degrees Fahrenheit to Adjust Cooling Setpoint By.",
|
@@ -765,7 +765,7 @@
|
|
765
765
|
"display_name": "Degrees Fahrenheit to Adjust heating Setpoint By.",
|
766
766
|
"machine_name": "degrees_fahrenheit_to_adjust_heating_setpoint_by.",
|
767
767
|
"name": "heating_adjustment",
|
768
|
-
"uuid": "
|
768
|
+
"uuid": "28dafd70-b2d4-0131-970e-14109fdf0b37",
|
769
769
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
770
770
|
},
|
771
771
|
"display_name": "Degrees Fahrenheit to Adjust heating Setpoint By.",
|
@@ -807,7 +807,7 @@
|
|
807
807
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
808
808
|
}
|
809
809
|
],
|
810
|
-
"version_uuid": "
|
810
|
+
"version_uuid": "28daae00-b2d4-0131-970c-14109fdf0b37",
|
811
811
|
"workflow_index": 3,
|
812
812
|
"workflow_step_type": "Measure"
|
813
813
|
},
|
@@ -819,29 +819,29 @@
|
|
819
819
|
"name": "space_type",
|
820
820
|
"value": "*Entire Building*",
|
821
821
|
"value_type": "choice",
|
822
|
-
"uuid": "
|
823
|
-
"version_uuid": "
|
822
|
+
"uuid": "28dbf780-b2d4-0131-9717-14109fdf0b37",
|
823
|
+
"version_uuid": "28dc0f90-b2d4-0131-9718-14109fdf0b37"
|
824
824
|
}
|
825
825
|
],
|
826
826
|
"bcl_measure_directory": "./measures/ReduceVentilationByPercentage",
|
827
827
|
"bcl_measure_class_name": "ReduceVentilationByPercentage",
|
828
|
-
"bcl_measure_uuid": "
|
829
|
-
"bcl_measure_version_uuid": "
|
828
|
+
"bcl_measure_uuid": "28db5ac0-b2d4-0131-9711-14109fdf0b37",
|
829
|
+
"bcl_measure_version_uuid": "28db7430-b2d4-0131-9712-14109fdf0b37",
|
830
830
|
"measure_definition_directory": "./measures/ReduceVentilationByPercentage",
|
831
831
|
"measure_definition_class_name": "ReduceVentilationByPercentage",
|
832
|
-
"measure_definition_uuid": "
|
833
|
-
"measure_definition_version_uuid": "
|
832
|
+
"measure_definition_uuid": "28db8f70-b2d4-0131-9713-14109fdf0b37",
|
833
|
+
"measure_definition_version_uuid": "28dbabc0-b2d4-0131-9714-14109fdf0b37",
|
834
834
|
"measure_type": "RubyMeasure",
|
835
835
|
"name": "reduce_ventilation_by_percentage",
|
836
836
|
"display_name": "Reduce Ventilation By Percentage",
|
837
|
-
"uuid": "
|
837
|
+
"uuid": "28dbc3c0-b2d4-0131-9715-14109fdf0b37",
|
838
838
|
"variables": [
|
839
839
|
{
|
840
840
|
"argument": {
|
841
841
|
"display_name": "Design Specification Outdoor Air Reduction (%).",
|
842
842
|
"machine_name": "design_specification_outdoor_air_reduction_(%).",
|
843
843
|
"name": "design_spec_outdoor_air_reduction_percent",
|
844
|
-
"uuid": "
|
844
|
+
"uuid": "28dc2e00-b2d4-0131-9719-14109fdf0b37",
|
845
845
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
846
846
|
},
|
847
847
|
"display_name": "Design Specification Outdoor Air Reduction (%).",
|
@@ -883,7 +883,7 @@
|
|
883
883
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
884
884
|
}
|
885
885
|
],
|
886
|
-
"version_uuid": "
|
886
|
+
"version_uuid": "28dbdbb0-b2d4-0131-9716-14109fdf0b37",
|
887
887
|
"workflow_index": 4,
|
888
888
|
"workflow_step_type": "Measure"
|
889
889
|
},
|
@@ -895,8 +895,8 @@
|
|
895
895
|
"name": "object",
|
896
896
|
"value": "*All Air Loops*",
|
897
897
|
"value_type": "choice",
|
898
|
-
"uuid": "
|
899
|
-
"version_uuid": "
|
898
|
+
"uuid": "28dcff40-b2d4-0131-9720-14109fdf0b37",
|
899
|
+
"version_uuid": "28dd1860-b2d4-0131-9721-14109fdf0b37"
|
900
900
|
},
|
901
901
|
{
|
902
902
|
"display_name": "Economizer Control Type.",
|
@@ -904,8 +904,8 @@
|
|
904
904
|
"name": "economizer_type",
|
905
905
|
"value": "FixedDryBulb",
|
906
906
|
"value_type": "choice",
|
907
|
-
"uuid": "
|
908
|
-
"version_uuid": "
|
907
|
+
"uuid": "28dd3760-b2d4-0131-9722-14109fdf0b37",
|
908
|
+
"version_uuid": "28dd56b0-b2d4-0131-9723-14109fdf0b37"
|
909
909
|
},
|
910
910
|
{
|
911
911
|
"display_name": "Economizer Maximum Enthalpy (Btu/lb).",
|
@@ -913,8 +913,8 @@
|
|
913
913
|
"name": "econoMaxEnthalpy",
|
914
914
|
"value": 28.0,
|
915
915
|
"value_type": "double",
|
916
|
-
"uuid": "
|
917
|
-
"version_uuid": "
|
916
|
+
"uuid": "28ddafb0-b2d4-0131-9725-14109fdf0b37",
|
917
|
+
"version_uuid": "28ddd8e0-b2d4-0131-9726-14109fdf0b37"
|
918
918
|
},
|
919
919
|
{
|
920
920
|
"display_name": "Economizer Maximum Limit Dewpoint Temperature (F).",
|
@@ -922,8 +922,8 @@
|
|
922
922
|
"name": "econoMaxDewpointTemp",
|
923
923
|
"value": 55.0,
|
924
924
|
"value_type": "double",
|
925
|
-
"uuid": "
|
926
|
-
"version_uuid": "
|
925
|
+
"uuid": "28de0f80-b2d4-0131-9727-14109fdf0b37",
|
926
|
+
"version_uuid": "28de4e50-b2d4-0131-9728-14109fdf0b37"
|
927
927
|
},
|
928
928
|
{
|
929
929
|
"display_name": "Economizer Minimum Limit Dry-Bulb Temperature (F).",
|
@@ -931,8 +931,8 @@
|
|
931
931
|
"name": "econoMinDryBulbTemp",
|
932
932
|
"value": -148.0,
|
933
933
|
"value_type": "double",
|
934
|
-
"uuid": "
|
935
|
-
"version_uuid": "
|
934
|
+
"uuid": "28de7c10-b2d4-0131-9729-14109fdf0b37",
|
935
|
+
"version_uuid": "28de9870-b2d4-0131-972a-14109fdf0b37"
|
936
936
|
},
|
937
937
|
{
|
938
938
|
"display_name": "Remove Baseline Costs From Effected AirLoopHVACOutdoorAirSystems?",
|
@@ -940,8 +940,8 @@
|
|
940
940
|
"name": "remove_costs",
|
941
941
|
"value": false,
|
942
942
|
"value_type": "bool",
|
943
|
-
"uuid": "
|
944
|
-
"version_uuid": "
|
943
|
+
"uuid": "28decb70-b2d4-0131-972b-14109fdf0b37",
|
944
|
+
"version_uuid": "28def930-b2d4-0131-972c-14109fdf0b37"
|
945
945
|
},
|
946
946
|
{
|
947
947
|
"display_name": "Material and Installation Costs per Air Loop to Enable Economizer ($).",
|
@@ -949,8 +949,8 @@
|
|
949
949
|
"name": "material_cost",
|
950
950
|
"value": 0.0,
|
951
951
|
"value_type": "double",
|
952
|
-
"uuid": "
|
953
|
-
"version_uuid": "
|
952
|
+
"uuid": "28df2bb0-b2d4-0131-972d-14109fdf0b37",
|
953
|
+
"version_uuid": "28df4fb0-b2d4-0131-972e-14109fdf0b37"
|
954
954
|
},
|
955
955
|
{
|
956
956
|
"display_name": "Demolition Costs per Air Loop to Enable Economizer ($).",
|
@@ -958,8 +958,8 @@
|
|
958
958
|
"name": "demolition_cost",
|
959
959
|
"value": 0.0,
|
960
960
|
"value_type": "double",
|
961
|
-
"uuid": "
|
962
|
-
"version_uuid": "
|
961
|
+
"uuid": "28df78e0-b2d4-0131-972f-14109fdf0b37",
|
962
|
+
"version_uuid": "28df9c50-b2d4-0131-9730-14109fdf0b37"
|
963
963
|
},
|
964
964
|
{
|
965
965
|
"display_name": "Years Until Costs Start (whole years).",
|
@@ -967,8 +967,8 @@
|
|
967
967
|
"name": "years_until_costs_start",
|
968
968
|
"value": 0,
|
969
969
|
"value_type": "integer",
|
970
|
-
"uuid": "
|
971
|
-
"version_uuid": "
|
970
|
+
"uuid": "28dfc560-b2d4-0131-9731-14109fdf0b37",
|
971
|
+
"version_uuid": "28dffb20-b2d4-0131-9732-14109fdf0b37"
|
972
972
|
},
|
973
973
|
{
|
974
974
|
"display_name": "Demolition Costs Occur During Initial Construction?",
|
@@ -976,8 +976,8 @@
|
|
976
976
|
"name": "demo_cost_initial_const",
|
977
977
|
"value": false,
|
978
978
|
"value_type": "bool",
|
979
|
-
"uuid": "
|
980
|
-
"version_uuid": "
|
979
|
+
"uuid": "28e02240-b2d4-0131-9733-14109fdf0b37",
|
980
|
+
"version_uuid": "28e042b0-b2d4-0131-9734-14109fdf0b37"
|
981
981
|
},
|
982
982
|
{
|
983
983
|
"display_name": "Expected Life (whole years).",
|
@@ -985,8 +985,8 @@
|
|
985
985
|
"name": "expected_life",
|
986
986
|
"value": 20,
|
987
987
|
"value_type": "integer",
|
988
|
-
"uuid": "
|
989
|
-
"version_uuid": "
|
988
|
+
"uuid": "28e08370-b2d4-0131-9735-14109fdf0b37",
|
989
|
+
"version_uuid": "28e0b8a0-b2d4-0131-9736-14109fdf0b37"
|
990
990
|
},
|
991
991
|
{
|
992
992
|
"display_name": "O & M Costs per Air Loop for Economizer ($).",
|
@@ -994,8 +994,8 @@
|
|
994
994
|
"name": "om_cost",
|
995
995
|
"value": 0.0,
|
996
996
|
"value_type": "double",
|
997
|
-
"uuid": "
|
998
|
-
"version_uuid": "
|
997
|
+
"uuid": "28e0f840-b2d4-0131-9737-14109fdf0b37",
|
998
|
+
"version_uuid": "28e11f80-b2d4-0131-9738-14109fdf0b37"
|
999
999
|
},
|
1000
1000
|
{
|
1001
1001
|
"display_name": "O & M Frequency (whole years).",
|
@@ -1003,29 +1003,29 @@
|
|
1003
1003
|
"name": "om_frequency",
|
1004
1004
|
"value": 1,
|
1005
1005
|
"value_type": "integer",
|
1006
|
-
"uuid": "
|
1007
|
-
"version_uuid": "
|
1006
|
+
"uuid": "28e14bc0-b2d4-0131-9739-14109fdf0b37",
|
1007
|
+
"version_uuid": "28e16960-b2d4-0131-973a-14109fdf0b37"
|
1008
1008
|
}
|
1009
1009
|
],
|
1010
1010
|
"bcl_measure_directory": "./measures/EnableEconomizerControl",
|
1011
1011
|
"bcl_measure_class_name": "EnableEconomizerControl",
|
1012
|
-
"bcl_measure_uuid": "
|
1013
|
-
"bcl_measure_version_uuid": "
|
1012
|
+
"bcl_measure_uuid": "28dc4e40-b2d4-0131-971a-14109fdf0b37",
|
1013
|
+
"bcl_measure_version_uuid": "28dc6b30-b2d4-0131-971b-14109fdf0b37",
|
1014
1014
|
"measure_definition_directory": "./measures/EnableEconomizerControl",
|
1015
1015
|
"measure_definition_class_name": "EnableEconomizerControl",
|
1016
|
-
"measure_definition_uuid": "
|
1017
|
-
"measure_definition_version_uuid": "
|
1016
|
+
"measure_definition_uuid": "28dc84a0-b2d4-0131-971c-14109fdf0b37",
|
1017
|
+
"measure_definition_version_uuid": "28dc9ff0-b2d4-0131-971d-14109fdf0b37",
|
1018
1018
|
"measure_type": "RubyMeasure",
|
1019
1019
|
"name": "enable_economizer_control",
|
1020
1020
|
"display_name": "Enable Economizer Control",
|
1021
|
-
"uuid": "
|
1021
|
+
"uuid": "28dcc710-b2d4-0131-971e-14109fdf0b37",
|
1022
1022
|
"variables": [
|
1023
1023
|
{
|
1024
1024
|
"argument": {
|
1025
1025
|
"display_name": "Economizer Maximum Limit Dry-Bulb Temperature (F).",
|
1026
1026
|
"machine_name": "economizer_maximum_limit_dry_bulb_temperature_(f).",
|
1027
1027
|
"name": "econoMaxDryBulbTemp",
|
1028
|
-
"uuid": "
|
1028
|
+
"uuid": "28dd8320-b2d4-0131-9724-14109fdf0b37",
|
1029
1029
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1030
1030
|
},
|
1031
1031
|
"display_name": "Economizer Maximum Limit Dry-Bulb Temperature (F).",
|
@@ -1067,7 +1067,7 @@
|
|
1067
1067
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
1068
1068
|
}
|
1069
1069
|
],
|
1070
|
-
"version_uuid": "
|
1070
|
+
"version_uuid": "28dce280-b2d4-0131-971f-14109fdf0b37",
|
1071
1071
|
"workflow_index": 5,
|
1072
1072
|
"workflow_step_type": "Measure"
|
1073
1073
|
},
|
@@ -1079,8 +1079,8 @@
|
|
1079
1079
|
"name": "boiler_widget",
|
1080
1080
|
"value": "*All boilers*",
|
1081
1081
|
"value_type": "choice",
|
1082
|
-
"uuid": "
|
1083
|
-
"version_uuid": "
|
1082
|
+
"uuid": "28e23430-b2d4-0131-9741-14109fdf0b37",
|
1083
|
+
"version_uuid": "28e25380-b2d4-0131-9742-14109fdf0b37"
|
1084
1084
|
},
|
1085
1085
|
{
|
1086
1086
|
"display_name": "Option 1, set boiler nominal thermal efficiency to a user defined value",
|
@@ -1088,8 +1088,8 @@
|
|
1088
1088
|
"name": "input_option_manual",
|
1089
1089
|
"value": true,
|
1090
1090
|
"value_type": "bool",
|
1091
|
-
"uuid": "
|
1092
|
-
"version_uuid": "
|
1091
|
+
"uuid": "28e272b0-b2d4-0131-9743-14109fdf0b37",
|
1092
|
+
"version_uuid": "28e29200-b2d4-0131-9744-14109fdf0b37"
|
1093
1093
|
},
|
1094
1094
|
{
|
1095
1095
|
"display_name": "Option 2, set boiler nominal thermal efficiency based on ASHRAE Standard 90.1 requirement",
|
@@ -1097,8 +1097,8 @@
|
|
1097
1097
|
"name": "input_option_standard",
|
1098
1098
|
"value": false,
|
1099
1099
|
"value_type": "bool",
|
1100
|
-
"uuid": "
|
1101
|
-
"version_uuid": "
|
1100
|
+
"uuid": "28e2f4e0-b2d4-0131-9746-14109fdf0b37",
|
1101
|
+
"version_uuid": "28e31c40-b2d4-0131-9747-14109fdf0b37"
|
1102
1102
|
},
|
1103
1103
|
{
|
1104
1104
|
"display_name": "Boiler nominal capacity [W]",
|
@@ -1106,8 +1106,8 @@
|
|
1106
1106
|
"name": "nominal_capacity",
|
1107
1107
|
"value": 0.0,
|
1108
1108
|
"value_type": "double",
|
1109
|
-
"uuid": "
|
1110
|
-
"version_uuid": "
|
1109
|
+
"uuid": "28e363f0-b2d4-0131-9748-14109fdf0b37",
|
1110
|
+
"version_uuid": "28e3a0a0-b2d4-0131-9749-14109fdf0b37"
|
1111
1111
|
},
|
1112
1112
|
{
|
1113
1113
|
"display_name": "Fuel type",
|
@@ -1115,8 +1115,8 @@
|
|
1115
1115
|
"name": "fuel_type_widget",
|
1116
1116
|
"value": 0.0,
|
1117
1117
|
"value_type": "choice",
|
1118
|
-
"uuid": "
|
1119
|
-
"version_uuid": "
|
1118
|
+
"uuid": "28e3d800-b2d4-0131-974a-14109fdf0b37",
|
1119
|
+
"version_uuid": "28e41f80-b2d4-0131-974b-14109fdf0b37"
|
1120
1120
|
},
|
1121
1121
|
{
|
1122
1122
|
"display_name": "ASHRAE Standards 90.1",
|
@@ -1124,29 +1124,29 @@
|
|
1124
1124
|
"name": "standards_widget",
|
1125
1125
|
"value": 0.0,
|
1126
1126
|
"value_type": "choice",
|
1127
|
-
"uuid": "
|
1128
|
-
"version_uuid": "
|
1127
|
+
"uuid": "28e46030-b2d4-0131-974c-14109fdf0b37",
|
1128
|
+
"version_uuid": "28e496e0-b2d4-0131-974d-14109fdf0b37"
|
1129
1129
|
}
|
1130
1130
|
],
|
1131
1131
|
"bcl_measure_directory": "./measures/SetBoilerThermalEfficiency",
|
1132
1132
|
"bcl_measure_class_name": "SetBoilerThermalEfficiency",
|
1133
|
-
"bcl_measure_uuid": "
|
1134
|
-
"bcl_measure_version_uuid": "
|
1133
|
+
"bcl_measure_uuid": "28e18cf0-b2d4-0131-973b-14109fdf0b37",
|
1134
|
+
"bcl_measure_version_uuid": "28e1a580-b2d4-0131-973c-14109fdf0b37",
|
1135
1135
|
"measure_definition_directory": "./measures/SetBoilerThermalEfficiency",
|
1136
1136
|
"measure_definition_class_name": "SetBoilerThermalEfficiency",
|
1137
|
-
"measure_definition_uuid": "
|
1138
|
-
"measure_definition_version_uuid": "
|
1137
|
+
"measure_definition_uuid": "28e1bf20-b2d4-0131-973d-14109fdf0b37",
|
1138
|
+
"measure_definition_version_uuid": "28e1de40-b2d4-0131-973e-14109fdf0b37",
|
1139
1139
|
"measure_type": "RubyMeasure",
|
1140
1140
|
"name": "set_boiler_thermal_efficiency",
|
1141
1141
|
"display_name": "Set Boiler Thermal Efficiency",
|
1142
|
-
"uuid": "
|
1142
|
+
"uuid": "28e1f7e0-b2d4-0131-973f-14109fdf0b37",
|
1143
1143
|
"variables": [
|
1144
1144
|
{
|
1145
1145
|
"argument": {
|
1146
1146
|
"display_name": "Boiler nominal thermal efficiency (between 0 and 1)",
|
1147
1147
|
"machine_name": "boiler_nominal_thermal_efficiency_(between_0_and_1)",
|
1148
1148
|
"name": "boiler_thermal_efficiency",
|
1149
|
-
"uuid": "
|
1149
|
+
"uuid": "28e2c1e0-b2d4-0131-9745-14109fdf0b37",
|
1150
1150
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1151
1151
|
},
|
1152
1152
|
"display_name": "Boiler nominal thermal efficiency (between 0 and 1)",
|
@@ -1188,7 +1188,7 @@
|
|
1188
1188
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
1189
1189
|
}
|
1190
1190
|
],
|
1191
|
-
"version_uuid": "
|
1191
|
+
"version_uuid": "28e21660-b2d4-0131-9740-14109fdf0b37",
|
1192
1192
|
"workflow_index": 6,
|
1193
1193
|
"workflow_step_type": "Measure"
|
1194
1194
|
},
|
@@ -1200,8 +1200,8 @@
|
|
1200
1200
|
"name": "allow_reduction",
|
1201
1201
|
"value": true,
|
1202
1202
|
"value_type": "bool",
|
1203
|
-
"uuid": "
|
1204
|
-
"version_uuid": "
|
1203
|
+
"uuid": "28e5e9e0-b2d4-0131-9755-14109fdf0b37",
|
1204
|
+
"version_uuid": "28e607c0-b2d4-0131-9756-14109fdf0b37"
|
1205
1205
|
},
|
1206
1206
|
{
|
1207
1207
|
"display_name": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).",
|
@@ -1209,8 +1209,8 @@
|
|
1209
1209
|
"name": "material_cost_increase_ip",
|
1210
1210
|
"value": 0.0,
|
1211
1211
|
"value_type": "double",
|
1212
|
-
"uuid": "
|
1213
|
-
"version_uuid": "
|
1212
|
+
"uuid": "28e63630-b2d4-0131-9757-14109fdf0b37",
|
1213
|
+
"version_uuid": "28e65340-b2d4-0131-9758-14109fdf0b37"
|
1214
1214
|
},
|
1215
1215
|
{
|
1216
1216
|
"display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).",
|
@@ -1218,8 +1218,8 @@
|
|
1218
1218
|
"name": "one_time_retrofit_cost_ip",
|
1219
1219
|
"value": 0.0,
|
1220
1220
|
"value_type": "double",
|
1221
|
-
"uuid": "
|
1222
|
-
"version_uuid": "
|
1221
|
+
"uuid": "28e67050-b2d4-0131-9759-14109fdf0b37",
|
1222
|
+
"version_uuid": "28e68df0-b2d4-0131-975a-14109fdf0b37"
|
1223
1223
|
},
|
1224
1224
|
{
|
1225
1225
|
"display_name": "Year to Incur One Time Retrofit Cost (whole years).",
|
@@ -1227,29 +1227,29 @@
|
|
1227
1227
|
"name": "years_until_retrofit_cost",
|
1228
1228
|
"value": 0,
|
1229
1229
|
"value_type": "integer",
|
1230
|
-
"uuid": "
|
1231
|
-
"version_uuid": "
|
1230
|
+
"uuid": "28e6ad70-b2d4-0131-975b-14109fdf0b37",
|
1231
|
+
"version_uuid": "28e6cad0-b2d4-0131-975c-14109fdf0b37"
|
1232
1232
|
}
|
1233
1233
|
],
|
1234
1234
|
"bcl_measure_directory": "./measures/IncreaseInsulationRValueForExteriorWalls",
|
1235
1235
|
"bcl_measure_class_name": "IncreaseInsulationRValueForExteriorWalls",
|
1236
|
-
"bcl_measure_uuid": "
|
1237
|
-
"bcl_measure_version_uuid": "
|
1236
|
+
"bcl_measure_uuid": "28e4d3c0-b2d4-0131-974e-14109fdf0b37",
|
1237
|
+
"bcl_measure_version_uuid": "28e4f790-b2d4-0131-974f-14109fdf0b37",
|
1238
1238
|
"measure_definition_directory": "./measures/IncreaseInsulationRValueForExteriorWalls",
|
1239
1239
|
"measure_definition_class_name": "IncreaseInsulationRValueForExteriorWalls",
|
1240
|
-
"measure_definition_uuid": "
|
1241
|
-
"measure_definition_version_uuid": "
|
1240
|
+
"measure_definition_uuid": "28e51bb0-b2d4-0131-9750-14109fdf0b37",
|
1241
|
+
"measure_definition_version_uuid": "28e53bb0-b2d4-0131-9751-14109fdf0b37",
|
1242
1242
|
"measure_type": "RubyMeasure",
|
1243
1243
|
"name": "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value",
|
1244
1244
|
"display_name": "Set R-value of Insulation for Exterior Walls to a Specific Value",
|
1245
|
-
"uuid": "
|
1245
|
+
"uuid": "28e55df0-b2d4-0131-9752-14109fdf0b37",
|
1246
1246
|
"variables": [
|
1247
1247
|
{
|
1248
1248
|
"argument": {
|
1249
1249
|
"display_name": "Insulation R-value (ft^2*h*R/Btu).",
|
1250
1250
|
"machine_name": "insulation_r_value_(ft^2*h*r/btu).",
|
1251
1251
|
"name": "r_value",
|
1252
|
-
"uuid": "
|
1252
|
+
"uuid": "28e5c010-b2d4-0131-9754-14109fdf0b37",
|
1253
1253
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1254
1254
|
},
|
1255
1255
|
"display_name": "Insulation R-value (ft^2*h*R/Btu).",
|
@@ -1291,7 +1291,7 @@
|
|
1291
1291
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
1292
1292
|
}
|
1293
1293
|
],
|
1294
|
-
"version_uuid": "
|
1294
|
+
"version_uuid": "28e57e20-b2d4-0131-9753-14109fdf0b37",
|
1295
1295
|
"workflow_index": 7,
|
1296
1296
|
"workflow_step_type": "Measure"
|
1297
1297
|
},
|
@@ -1303,29 +1303,29 @@
|
|
1303
1303
|
"name": "chiller_widget",
|
1304
1304
|
"value": "*All chillers*",
|
1305
1305
|
"value_type": "choice",
|
1306
|
-
"uuid": "
|
1307
|
-
"version_uuid": "
|
1306
|
+
"uuid": "28e7ecc0-b2d4-0131-9763-14109fdf0b37",
|
1307
|
+
"version_uuid": "28e80940-b2d4-0131-9764-14109fdf0b37"
|
1308
1308
|
}
|
1309
1309
|
],
|
1310
1310
|
"bcl_measure_directory": "./measures/SetChillerCOP",
|
1311
1311
|
"bcl_measure_class_name": "SetChillerCOP",
|
1312
|
-
"bcl_measure_uuid": "
|
1313
|
-
"bcl_measure_version_uuid": "
|
1312
|
+
"bcl_measure_uuid": "28e6f160-b2d4-0131-975d-14109fdf0b37",
|
1313
|
+
"bcl_measure_version_uuid": "28e710c0-b2d4-0131-975e-14109fdf0b37",
|
1314
1314
|
"measure_definition_directory": "./measures/SetChillerCOP",
|
1315
1315
|
"measure_definition_class_name": "SetChillerCOP",
|
1316
|
-
"measure_definition_uuid": "
|
1317
|
-
"measure_definition_version_uuid": "
|
1316
|
+
"measure_definition_uuid": "28e73280-b2d4-0131-975f-14109fdf0b37",
|
1317
|
+
"measure_definition_version_uuid": "28e75e70-b2d4-0131-9760-14109fdf0b37",
|
1318
1318
|
"measure_type": "RubyMeasure",
|
1319
1319
|
"name": "setchillercop",
|
1320
1320
|
"display_name": "SetChillerCOP",
|
1321
|
-
"uuid": "
|
1321
|
+
"uuid": "28e79160-b2d4-0131-9761-14109fdf0b37",
|
1322
1322
|
"variables": [
|
1323
1323
|
{
|
1324
1324
|
"argument": {
|
1325
1325
|
"display_name": "Chiller Rated COP (more than 0)",
|
1326
1326
|
"machine_name": "chiller_rated_cop_(more_than_0)",
|
1327
1327
|
"name": "chiller_thermal_efficiency",
|
1328
|
-
"uuid": "
|
1328
|
+
"uuid": "28e82c60-b2d4-0131-9765-14109fdf0b37",
|
1329
1329
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1330
1330
|
},
|
1331
1331
|
"display_name": "Chiller Rated COP (more than 0)",
|
@@ -1367,7 +1367,7 @@
|
|
1367
1367
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
1368
1368
|
}
|
1369
1369
|
],
|
1370
|
-
"version_uuid": "
|
1370
|
+
"version_uuid": "28e7cac0-b2d4-0131-9762-14109fdf0b37",
|
1371
1371
|
"workflow_index": 8,
|
1372
1372
|
"workflow_step_type": "Measure"
|
1373
1373
|
},
|
@@ -1377,23 +1377,23 @@
|
|
1377
1377
|
],
|
1378
1378
|
"bcl_measure_directory": "./measures/SetHeatingandCoolingSizingFactors",
|
1379
1379
|
"bcl_measure_class_name": "SetHeatingandCoolingSizingFactors",
|
1380
|
-
"bcl_measure_uuid": "
|
1381
|
-
"bcl_measure_version_uuid": "
|
1380
|
+
"bcl_measure_uuid": "28e85030-b2d4-0131-9766-14109fdf0b37",
|
1381
|
+
"bcl_measure_version_uuid": "28e87a70-b2d4-0131-9767-14109fdf0b37",
|
1382
1382
|
"measure_definition_directory": "./measures/SetHeatingandCoolingSizingFactors",
|
1383
1383
|
"measure_definition_class_name": "SetHeatingandCoolingSizingFactors",
|
1384
|
-
"measure_definition_uuid": "
|
1385
|
-
"measure_definition_version_uuid": "
|
1384
|
+
"measure_definition_uuid": "28e89600-b2d4-0131-9768-14109fdf0b37",
|
1385
|
+
"measure_definition_version_uuid": "28e8b030-b2d4-0131-9769-14109fdf0b37",
|
1386
1386
|
"measure_type": "RubyMeasure",
|
1387
1387
|
"name": "set_heating_and_cooling_sizing_factors",
|
1388
1388
|
"display_name": "Set Heating and Cooling Sizing Factors",
|
1389
|
-
"uuid": "
|
1389
|
+
"uuid": "28e8c9e0-b2d4-0131-976a-14109fdf0b37",
|
1390
1390
|
"variables": [
|
1391
1391
|
{
|
1392
1392
|
"argument": {
|
1393
1393
|
"display_name": "Heating Sizing Factor (eg 1.25 = 125% of required heating capacity.",
|
1394
1394
|
"machine_name": "heating_sizing_factor_(eg_1.25_=_125%_of_required_heating_capacity.",
|
1395
1395
|
"name": "htg_sz_factor",
|
1396
|
-
"uuid": "
|
1396
|
+
"uuid": "28e909b0-b2d4-0131-976c-14109fdf0b37",
|
1397
1397
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1398
1398
|
},
|
1399
1399
|
"display_name": "Heating Sizing Factor (eg 1.25 = 125% of required heating capacity.",
|
@@ -1439,7 +1439,7 @@
|
|
1439
1439
|
"display_name": "Coolinig Sizing Factor (eg 1.15 = 115% of required cooling capacity.",
|
1440
1440
|
"machine_name": "coolinig_sizing_factor_(eg_1.15_=_115%_of_required_cooling_capacity.",
|
1441
1441
|
"name": "clg_sz_factor",
|
1442
|
-
"uuid": "
|
1442
|
+
"uuid": "28e94240-b2d4-0131-976d-14109fdf0b37",
|
1443
1443
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1444
1444
|
},
|
1445
1445
|
"display_name": "Coolinig Sizing Factor (eg 1.15 = 115% of required cooling capacity.",
|
@@ -1481,7 +1481,7 @@
|
|
1481
1481
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
1482
1482
|
}
|
1483
1483
|
],
|
1484
|
-
"version_uuid": "
|
1484
|
+
"version_uuid": "28e8e680-b2d4-0131-976b-14109fdf0b37",
|
1485
1485
|
"workflow_index": 9,
|
1486
1486
|
"workflow_step_type": "Measure"
|
1487
1487
|
},
|
@@ -1491,23 +1491,23 @@
|
|
1491
1491
|
],
|
1492
1492
|
"bcl_measure_directory": "./measures/SetChilledWaterLoopTemperature",
|
1493
1493
|
"bcl_measure_class_name": "SetChilledWaterLoopTemperature",
|
1494
|
-
"bcl_measure_uuid": "
|
1495
|
-
"bcl_measure_version_uuid": "
|
1494
|
+
"bcl_measure_uuid": "28e96640-b2d4-0131-976e-14109fdf0b37",
|
1495
|
+
"bcl_measure_version_uuid": "28e98420-b2d4-0131-976f-14109fdf0b37",
|
1496
1496
|
"measure_definition_directory": "./measures/SetChilledWaterLoopTemperature",
|
1497
1497
|
"measure_definition_class_name": "SetChilledWaterLoopTemperature",
|
1498
|
-
"measure_definition_uuid": "
|
1499
|
-
"measure_definition_version_uuid": "
|
1498
|
+
"measure_definition_uuid": "28e9bd90-b2d4-0131-9770-14109fdf0b37",
|
1499
|
+
"measure_definition_version_uuid": "28e9df10-b2d4-0131-9771-14109fdf0b37",
|
1500
1500
|
"measure_type": "RubyMeasure",
|
1501
1501
|
"name": "set_chilled_water_loop_temperature",
|
1502
1502
|
"display_name": "Set Chilled Water Loop Temperature",
|
1503
|
-
"uuid": "
|
1503
|
+
"uuid": "28ea0c30-b2d4-0131-9772-14109fdf0b37",
|
1504
1504
|
"variables": [
|
1505
1505
|
{
|
1506
1506
|
"argument": {
|
1507
1507
|
"display_name": "Desired chilled water setpoint (F)",
|
1508
1508
|
"machine_name": "desired_chilled_water_setpoint_(f)",
|
1509
1509
|
"name": "cw_temp_f",
|
1510
|
-
"uuid": "
|
1510
|
+
"uuid": "28eaa320-b2d4-0131-9774-14109fdf0b37",
|
1511
1511
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1512
1512
|
},
|
1513
1513
|
"display_name": "Desired chilled water setpoint (F)",
|
@@ -1549,7 +1549,7 @@
|
|
1549
1549
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
1550
1550
|
}
|
1551
1551
|
],
|
1552
|
-
"version_uuid": "
|
1552
|
+
"version_uuid": "28ea6250-b2d4-0131-9773-14109fdf0b37",
|
1553
1553
|
"workflow_index": 10,
|
1554
1554
|
"workflow_step_type": "Measure"
|
1555
1555
|
},
|
@@ -1559,23 +1559,23 @@
|
|
1559
1559
|
],
|
1560
1560
|
"bcl_measure_directory": "./measures/SetHotWaterLoopTemperature",
|
1561
1561
|
"bcl_measure_class_name": "SetHotWaterLoopTemperature",
|
1562
|
-
"bcl_measure_uuid": "
|
1563
|
-
"bcl_measure_version_uuid": "
|
1562
|
+
"bcl_measure_uuid": "28eae100-b2d4-0131-9775-14109fdf0b37",
|
1563
|
+
"bcl_measure_version_uuid": "28eb0ca0-b2d4-0131-9776-14109fdf0b37",
|
1564
1564
|
"measure_definition_directory": "./measures/SetHotWaterLoopTemperature",
|
1565
1565
|
"measure_definition_class_name": "SetHotWaterLoopTemperature",
|
1566
|
-
"measure_definition_uuid": "
|
1567
|
-
"measure_definition_version_uuid": "
|
1566
|
+
"measure_definition_uuid": "28eb3350-b2d4-0131-9777-14109fdf0b37",
|
1567
|
+
"measure_definition_version_uuid": "28eb51c0-b2d4-0131-9778-14109fdf0b37",
|
1568
1568
|
"measure_type": "RubyMeasure",
|
1569
1569
|
"name": "set_hot_water_loop_temperature",
|
1570
1570
|
"display_name": "Set Hot Water Loop Temperature",
|
1571
|
-
"uuid": "
|
1571
|
+
"uuid": "28eb7000-b2d4-0131-9779-14109fdf0b37",
|
1572
1572
|
"variables": [
|
1573
1573
|
{
|
1574
1574
|
"argument": {
|
1575
1575
|
"display_name": "Desired hot water setpoint (F)",
|
1576
1576
|
"machine_name": "desired_hot_water_setpoint_(f)",
|
1577
1577
|
"name": "hw_temp_f",
|
1578
|
-
"uuid": "
|
1578
|
+
"uuid": "28ebdc90-b2d4-0131-977b-14109fdf0b37",
|
1579
1579
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1580
1580
|
},
|
1581
1581
|
"display_name": "Desired hot water setpoint (F)",
|
@@ -1617,7 +1617,7 @@
|
|
1617
1617
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
1618
1618
|
}
|
1619
1619
|
],
|
1620
|
-
"version_uuid": "
|
1620
|
+
"version_uuid": "28eb97d0-b2d4-0131-977a-14109fdf0b37",
|
1621
1621
|
"workflow_index": 11,
|
1622
1622
|
"workflow_step_type": "Measure"
|
1623
1623
|
},
|
@@ -1627,23 +1627,23 @@
|
|
1627
1627
|
],
|
1628
1628
|
"bcl_measure_directory": "./measures/SetMinimumVAVTerminalFlowFraction",
|
1629
1629
|
"bcl_measure_class_name": "SetMinimumVAVTerminalFlowFraction",
|
1630
|
-
"bcl_measure_uuid": "
|
1631
|
-
"bcl_measure_version_uuid": "
|
1630
|
+
"bcl_measure_uuid": "28ec1ec0-b2d4-0131-977c-14109fdf0b37",
|
1631
|
+
"bcl_measure_version_uuid": "28ec3f00-b2d4-0131-977d-14109fdf0b37",
|
1632
1632
|
"measure_definition_directory": "./measures/SetMinimumVAVTerminalFlowFraction",
|
1633
1633
|
"measure_definition_class_name": "SetMinimumVAVTerminalFlowFraction",
|
1634
|
-
"measure_definition_uuid": "
|
1635
|
-
"measure_definition_version_uuid": "
|
1634
|
+
"measure_definition_uuid": "28ec5da0-b2d4-0131-977e-14109fdf0b37",
|
1635
|
+
"measure_definition_version_uuid": "28ec7760-b2d4-0131-977f-14109fdf0b37",
|
1636
1636
|
"measure_type": "RubyMeasure",
|
1637
1637
|
"name": "set_minimum_vav_terminal_flow_fraction",
|
1638
1638
|
"display_name": "Set Minimum VAV Terminal Flow Fraction",
|
1639
|
-
"uuid": "
|
1639
|
+
"uuid": "28ec9100-b2d4-0131-9780-14109fdf0b37",
|
1640
1640
|
"variables": [
|
1641
1641
|
{
|
1642
1642
|
"argument": {
|
1643
1643
|
"display_name": "Minimum VAV Terminal Flow Fraction (%)",
|
1644
1644
|
"machine_name": "minimum_vav_terminal_flow_fraction_(%)",
|
1645
1645
|
"name": "min_vav_frac",
|
1646
|
-
"uuid": "
|
1646
|
+
"uuid": "28ecd9b0-b2d4-0131-9782-14109fdf0b37",
|
1647
1647
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1648
1648
|
},
|
1649
1649
|
"display_name": "Minimum VAV Terminal Flow Fraction (%)",
|
@@ -1685,7 +1685,7 @@
|
|
1685
1685
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
1686
1686
|
}
|
1687
1687
|
],
|
1688
|
-
"version_uuid": "
|
1688
|
+
"version_uuid": "28ecae40-b2d4-0131-9781-14109fdf0b37",
|
1689
1689
|
"workflow_index": 12,
|
1690
1690
|
"workflow_step_type": "Measure"
|
1691
1691
|
},
|
@@ -1695,23 +1695,23 @@
|
|
1695
1695
|
],
|
1696
1696
|
"bcl_measure_directory": "./measures/ModifyEnergyPlusFanVariableVolumeObjects",
|
1697
1697
|
"bcl_measure_class_name": "ModifyEnergyPlusFanVariableVolumeObjects",
|
1698
|
-
"bcl_measure_uuid": "
|
1699
|
-
"bcl_measure_version_uuid": "
|
1698
|
+
"bcl_measure_uuid": "28ed1740-b2d4-0131-9783-14109fdf0b37",
|
1699
|
+
"bcl_measure_version_uuid": "28ed5120-b2d4-0131-9784-14109fdf0b37",
|
1700
1700
|
"measure_definition_directory": "./measures/ModifyEnergyPlusFanVariableVolumeObjects",
|
1701
1701
|
"measure_definition_class_name": "ModifyEnergyPlusFanVariableVolumeObjects",
|
1702
|
-
"measure_definition_uuid": "
|
1703
|
-
"measure_definition_version_uuid": "
|
1702
|
+
"measure_definition_uuid": "28ed89a0-b2d4-0131-9785-14109fdf0b37",
|
1703
|
+
"measure_definition_version_uuid": "28edb470-b2d4-0131-9786-14109fdf0b37",
|
1704
1704
|
"measure_type": "EnergyPlusMeasure",
|
1705
1705
|
"name": "modify_energyplus_fan_varaible_volume_objects",
|
1706
1706
|
"display_name": "Modify EnergyPlus Fan Varaible Volume Objects",
|
1707
|
-
"uuid": "
|
1707
|
+
"uuid": "28edd8e0-b2d4-0131-9787-14109fdf0b37",
|
1708
1708
|
"variables": [
|
1709
1709
|
{
|
1710
1710
|
"argument": {
|
1711
1711
|
"display_name": "Pressure Rise (Pa).",
|
1712
1712
|
"machine_name": "pressure_rise_(pa).",
|
1713
1713
|
"name": "pressureRise",
|
1714
|
-
"uuid": "
|
1714
|
+
"uuid": "28ee2380-b2d4-0131-9789-14109fdf0b37",
|
1715
1715
|
"version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912"
|
1716
1716
|
},
|
1717
1717
|
"display_name": "Pressure Rise (Pa).",
|
@@ -1753,7 +1753,7 @@
|
|
1753
1753
|
"version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953"
|
1754
1754
|
}
|
1755
1755
|
],
|
1756
|
-
"version_uuid": "
|
1756
|
+
"version_uuid": "28edf910-b2d4-0131-9788-14109fdf0b37",
|
1757
1757
|
"workflow_index": 13,
|
1758
1758
|
"workflow_step_type": "Measure"
|
1759
1759
|
}
|