-
Notifications
You must be signed in to change notification settings - Fork 57
/
pat.json
20214 lines (20214 loc) · 696 KB
/
pat.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"projectName": "project_multifamily_beta",
"projectDir": "C:\\OpenStudio\\OpenStudio-BuildStock\\project_multifamily_beta",
"analysisName": "project_multifamily_beta",
"seed": "EmptySeedModel.osm",
"weatherFile": "Placeholder.epw",
"analysis_type": "Algorithmic",
"remoteSettings": {
"open": true,
"remoteType": "Amazon Cloud",
"remoteServerURL": "http://ec2-54-236-213-139.compute-1.amazonaws.com/",
"aws": {
"cluster_name": "resstock",
"connected": false,
"server_instance_type": {
"name": "d2.4xlarge",
"cpus": "16",
"memory": "122 GiB",
"storage": "12 x 2000 GB",
"cost": "$2.76/hr"
},
"worker_instance_type": {
"name": "c3.8xlarge",
"cpus": "32",
"memory": "60 GiB",
"storage": "2 x 320 GB",
"cost": "$1.68/hr"
},
"user_id": "jrobert1",
"worker_node_number": 0,
"aws_tags": [],
"openstudio_server_version": {
"name": "2.9.0",
"notes": null,
"standards": {
"ref": "0.2.10",
"repo": "nrel/openstudio-standards"
},
"workflow": {
"ref": "1.3.3",
"repo": "nrel/openstudio-workflow-gem"
},
"energyplus": "9.2",
"radiance": "NREL 5.0.a",
"analysis": {
"ref": "1.0.1",
"repo": "nrel/openstudio-analysis-gem"
},
"openstudio": {
"version_number": "2.9.0",
"version_sha": "801faa459c",
"url_base": "https://s3.amazonaws.com/openstudio-builds/NUMBER/OpenStudio-NUMBER.SHA-Linux.deb"
},
"server": {
"ref": "90432f8d8fd77d7be44666b649910f870512ee60",
"repo": "nrel/openstudio-server"
},
"R": "3.5.2",
"ami": "ami-0ce2b0cb6ba652c29",
"recommend": ""
},
"cluster_status": "terminated",
"server": {
"dns": null
},
"open": false
},
"credentials": {
"yamlFilename": "jrobert1",
"accessKey": "AKIA****",
"region": "us-east-1"
},
"openstudio_server_version": ""
},
"samplingMethod": {
"id": "diag",
"name": "analysis.type.diagonal",
"link": null
},
"algorithmSettings": [
{
"name": "experiment_type",
"displayName": "Experiment Type",
"description": "Options: diagonal",
"defaultValue": "diagonal",
"type": "string",
"value": "diagonal",
"$$hashKey": "object:186"
},
{
"name": "run_baseline",
"displayName": "Run Baseline?",
"description": "Options: 1 or 0 (True or False)",
"defaultValue": 1,
"type": "number",
"value": 1,
"$$hashKey": "object:188"
},
{
"name": "seed",
"displayName": "Seed",
"description": "Integer seed for random number generator",
"defaultValue": null,
"type": "number",
"value": null,
"$$hashKey": "object:20082"
},
{
"name": "failed_f_value",
"displayName": "Failed F Value",
"description": "Return Value for F(x) if F fails",
"defaultValue": 1000000000000000000,
"type": "number",
"value": 1000000000000000000,
"$$hashKey": "object:189"
},
{
"name": "debug_messages",
"displayName": "Debug Messages",
"description": "Options: 1 or 0 (True or False)",
"defaultValue": 0,
"type": "number",
"value": 1,
"$$hashKey": "object:190"
}
],
"rubyMD5": "",
"mongoMD5": "",
"openstudioServerMD5": "",
"openstudioCLIMD5": "",
"openstudioMD5": "",
"measures": [
{
"measure_dir": "C:\\OpenStudio\\OpenStudio-BuildStock\\project_multifamily_beta\\measures\\ResidentialSimulationControls",
"name": "residential_simulation_controls",
"directory": "C:\\OpenStudio\\OpenStudio-BuildStock\\project_multifamily_beta\\measures\\ResidentialSimulationControls",
"uid": "874f921e-8f3c-458a-a82f-01b7d51a547e",
"uuid": "{874f921e-8f3c-458a-a82f-01b7d51a547e}",
"version_id": "50490d3c-8385-4b7e-a525-df4147819d03",
"version_uuid": "{50490d3c-8385-4b7e-a525-df4147819d03}",
"version_modified": "20200121T164352Z",
"xml_checksum": "2C38F48B",
"display_name": "Set Residential Simulation Controls",
"class_name": "ResidentialSimulationControls",
"description": "Set the simulation timesteps per hour, the run period begin month/day and end month/day, and the calendar year (for start day of week).",
"modeler_description": "Set the simulation timesteps per hour on the Timestep object, the run period begin month/day and end month/day on the RunPeriod object, and the calendar year on the YearDescription object.",
"tags": "Whole Building.Space Types",
"outputs": [],
"attributes": [
{
"name": "Measure Type",
"display_name": "Measure Type",
"value": "ModelMeasure"
}
],
"arguments": [
{
"name": "timesteps_per_hr",
"display_name": "Simulation Timesteps Per Hour",
"description": "The value entered here is the number of (zone) timesteps to use within an hour. For example a value of 6 entered here directs the program to use a zone timestep of 10 minutes and a value of 60 means a 1 minute timestep.",
"type": "Integer",
"required": true,
"model_dependent": false,
"default_value": 6,
"display_name_short": "timesteps_per_hr",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 6,
"minimum": 6,
"mean": 6,
"deltaX": 6,
"stdDev": 6,
"default_value": 6
},
"$$hashKey": "object:14698"
},
{
"name": "begin_month",
"display_name": "Run Period Begin Month",
"description": "This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired.",
"type": "Integer",
"required": true,
"model_dependent": false,
"default_value": 1,
"display_name_short": "begin_month",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 1,
"minimum": 1,
"mean": 1,
"deltaX": 1,
"stdDev": 1,
"default_value": 1
},
"$$hashKey": "object:14699"
},
{
"name": "begin_day_of_month",
"display_name": "Run Period Begin Day of Month",
"description": "This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired.",
"type": "Integer",
"required": true,
"model_dependent": false,
"default_value": 1,
"display_name_short": "begin_day_of_month",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 1,
"minimum": 1,
"mean": 1,
"deltaX": 1,
"stdDev": 1,
"default_value": 1
},
"$$hashKey": "object:14700"
},
{
"name": "end_month",
"display_name": "Run Period End Month",
"description": "This numeric field should contain the ending month number (1 = January, 2 = February, etc.) for the annual run period desired.",
"type": "Integer",
"required": true,
"model_dependent": false,
"default_value": 12,
"display_name_short": "end_month",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 12,
"minimum": 12,
"mean": 12,
"deltaX": 12,
"stdDev": 12,
"default_value": 12
},
"$$hashKey": "object:14701"
},
{
"name": "end_day_of_month",
"display_name": "Run Period End Day of Month",
"description": "This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired.",
"type": "Integer",
"required": true,
"model_dependent": false,
"default_value": 31,
"display_name_short": "end_day_of_month",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 31,
"minimum": 31,
"mean": 31,
"deltaX": 31,
"stdDev": 31,
"default_value": 31
},
"$$hashKey": "object:14702"
},
{
"name": "calendar_year",
"display_name": "Calendar Year",
"description": "This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file.",
"type": "Integer",
"required": true,
"model_dependent": false,
"default_value": 2007,
"display_name_short": "calendar_year",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 2007,
"minimum": 2007,
"mean": 2007,
"deltaX": 2007,
"stdDev": 2007,
"default_value": 2007
},
"$$hashKey": "object:14703"
}
],
"edit": "",
"status": "",
"bcl_update": false,
"location": "my",
"add": "",
"open": false,
"addedToProject": true,
"date": "1/21/2020",
"author": "",
"type": "ModelMeasure",
"seed": "EmptySeedModel.osm",
"workflow_index": 0,
"options": [],
"instanceId": 0.003961070141581979,
"skip": false,
"$$hashKey": "object:14655"
},
{
"measure_dir": "C:\\OpenStudio\\OpenStudio-BuildStock\\project_multifamily_beta\\measures\\BuildExistingModel",
"name": "build_existing_model",
"directory": "C:\\OpenStudio\\OpenStudio-BuildStock\\project_multifamily_beta\\measures\\BuildExistingModel",
"uid": "dedf59bb-3b88-4f16-8755-2c1ff5519cbf",
"uuid": "{dedf59bb-3b88-4f16-8755-2c1ff5519cbf}",
"version_id": "ddb1178a-cb38-492a-84d7-534fd5d25142",
"version_uuid": "{ddb1178a-cb38-492a-84d7-534fd5d25142}",
"version_modified": "20200118T171809Z",
"xml_checksum": "2C38F48B",
"display_name": "Build Existing Model",
"class_name": "BuildExistingModel",
"description": "Builds the OpenStudio Model for an existing building.",
"modeler_description": "Builds the OpenStudio Model using the sampling csv file, which contains the specified parameters for each existing building. Based on the supplied building number, those parameters are used to run the OpenStudio measures with appropriate arguments and build up the OpenStudio model.",
"tags": "Whole Building.Space Types",
"outputs": [],
"attributes": [
{
"name": "Measure Type",
"display_name": "Measure Type",
"value": "ModelMeasure"
}
],
"arguments": [
{
"name": "building_id",
"display_name": "Building ID",
"description": "The building number (between 1 and the number of samples).",
"type": "Integer",
"required": true,
"model_dependent": false,
"display_name_short": "building_id",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Pivot",
"distribution": "Integer Sequence",
"discreteVariables": [],
"maximum": 450000,
"minimum": 1,
"mean": 0,
"deltaX": 0,
"stdDev": 0,
"default_value": 0,
"showWarningIcon": false
},
"$$hashKey": "object:32390"
},
{
"name": "workflow_json",
"display_name": "Workflow JSON",
"description": "The name of the JSON file (in the resources dir) that dictates the order in which measures are to be run. If not provided, the order specified in resources/options_lookup.tsv will be used.",
"type": "String",
"required": false,
"model_dependent": false,
"display_name_short": "workflow_json",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",
"default_value": "measure-info.json"
},
"$$hashKey": "object:32391"
},
{
"name": "number_of_buildings_represented",
"display_name": "Number of Buildings Represented",
"description": "The total number of buildings represented by the existing building models.",
"type": "Integer",
"required": false,
"model_dependent": false,
"display_name_short": "number_of_buildings_represented",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 0,
"minimum": 0,
"mean": 0,
"deltaX": 0,
"stdDev": 0,
"default_value": 110000000
},
"$$hashKey": "object:32392"
},
{
"name": "sample_weight",
"display_name": "Sample Weight of Simulation",
"description": "Number of buildings this simulation represents.",
"type": "Double",
"required": false,
"model_dependent": false,
"display_name_short": "sample_weight",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 0,
"minimum": 0,
"mean": 0,
"deltaX": 0,
"stdDev": 0,
"default_value": 0
},
"$$hashKey": "object:32393"
},
{
"name": "downselect_logic",
"display_name": "Downselect Logic",
"description": "Logic that specifies the subset of the building stock to be considered in the analysis. Specify one or more parameter|option as found in resources\\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not.",
"type": "String",
"required": false,
"model_dependent": false,
"display_name_short": "downselect_logic",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",
"default_value": ""
},
"$$hashKey": "object:32394"
},
{
"name": "measures_to_ignore",
"display_name": "Measures to Ignore",
"description": "Measures to exclude from the OpenStudio Workflow specified by listing one or more measure directories separated by '|'. Core ResStock measures cannot be ignored (this measure will fail). INTENDED FOR ADVANCED USERS/WORKFLOW DEVELOPERS.",
"type": "String",
"required": false,
"model_dependent": false,
"display_name_short": "measures_to_ignore",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",
"default_value": ""
},
"$$hashKey": "object:32395"
}
],
"edit": "",
"status": "",
"bcl_update": false,
"location": "my",
"add": "",
"open": false,
"addedToProject": true,
"date": "1/18/2020",
"author": "",
"type": "ModelMeasure",
"seed": "EmptySeedModel.osm",
"workflow_index": 1,
"options": [],
"instanceId": 0.4838529465117527,
"skip": false,
"$$hashKey": "object:32347",
"showWarningText": false,
"outputMeasure": false
},
{
"measure_dir": "C:\\OpenStudio\\OpenStudio-BuildStock\\project_multifamily_beta\\measures\\ApplyUpgrade",
"name": "apply_upgrade",
"directory": "C:\\OpenStudio\\OpenStudio-BuildStock\\project_multifamily_beta\\measures\\ApplyUpgrade",
"uid": "33f1654c-f734-43d1-b35d-9d2856e41b5a",
"uuid": "{33f1654c-f734-43d1-b35d-9d2856e41b5a}",
"version_id": "a4d54a15-7972-4b34-acf3-66d1c5f16a83",
"version_uuid": "{a4d54a15-7972-4b34-acf3-66d1c5f16a83}",
"version_modified": "20190830T143840Z",
"xml_checksum": "9339BE01",
"display_name": "Apply Upgrade",
"class_name": "ApplyUpgrade",
"description": "Measure that applies an upgrade (one or more child measures) to a building model based on the specified logic.",
"modeler_description": "Determines if the upgrade should apply to a given building model. If so, calls one or more child measures with the appropriate arguments.",
"tags": "Whole Building.Space Types",
"outputs": [],
"attributes": [
{
"name": "Intended Software Tool",
"display_name": "Intended Software Tool",
"value": "Apply Measure Now"
},
{
"name": "Intended Software Tool",
"display_name": "Intended Software Tool",
"value": "OpenStudio Application"
},
{
"name": "Intended Software Tool",
"display_name": "Intended Software Tool",
"value": "Parametric Analysis Tool"
},
{
"name": "Intended Software Tool",
"display_name": "Intended Software Tool",
"value": "Apply Measure Now"
},
{
"name": "Intended Software Tool",
"display_name": "Intended Software Tool",
"value": "OpenStudio Application"
},
{
"name": "Intended Software Tool",
"display_name": "Intended Software Tool",
"value": "Parametric Analysis Tool"
},
{
"name": "Measure Type",
"display_name": "Measure Type",
"value": "ModelMeasure"
},
{
"name": "Intended Software Tool",
"display_name": "Intended Software Tool",
"value": "Apply Measure Now"
},
{
"name": "Intended Software Tool",
"display_name": "Intended Software Tool",
"value": "OpenStudio Application"
},
{
"name": "Intended Software Tool",
"display_name": "Intended Software Tool",
"value": "Parametric Analysis Tool"
}
],
"arguments": [
{
"name": "upgrade_name",
"display_name": "Upgrade Name",
"description": "User-specificed name that describes the upgrade.",
"type": "String",
"required": true,
"model_dependent": false,
"default_value": "My Upgrade",
"display_name_short": "upgrade_name",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "My Upgrade",
"minimum": "My Upgrade",
"mean": "My Upgrade",
"deltaX": "My Upgrade",
"stdDev": "My Upgrade",
"default_value": "Triple-Pane Windows"
},
"$$hashKey": "object:33139"
},
{
"name": "option_1",
"display_name": "Option 1",
"description": "Specify the parameter|option as found in resources\\options_lookup.tsv.",
"type": "String",
"required": true,
"model_dependent": false,
"display_name_short": "option_1",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",
"default_value": "Windows|Low-E, Triple, Non-metal, Air, L-Gain"
},
"$$hashKey": "object:33140"
},
{
"name": "option_1_apply_logic",
"display_name": "Option 1 Apply Logic",
"description": "Logic that specifies if the Option 1 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not.",
"type": "String",
"required": false,
"model_dependent": false,
"display_name_short": "option_1_apply_logic",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",
"default_value": ""
},
"$$hashKey": "object:33141"
},
{
"name": "option_1_cost_1_value",
"display_name": "Option 1 Cost 1 Value",
"description": "Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier).",
"type": "Double",
"required": false,
"model_dependent": false,
"units": "$",
"display_name_short": "option_1_cost_1_value",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 0,
"minimum": 0,
"mean": 0,
"deltaX": 0,
"stdDev": 0,
"default_value": 45.77
},
"$$hashKey": "object:33142"
},
{
"name": "option_1_cost_1_multiplier",
"display_name": "Option 1 Cost 1 Multiplier",
"description": "Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier).",
"type": "Choice",
"required": false,
"model_dependent": false,
"default_value": "",
"choice_values": [
"",
"Fixed (1)",
"Wall Area, Above-Grade, Conditioned (ft^2)",
"Wall Area, Above-Grade, Exterior (ft^2)",
"Wall Area, Below-Grade (ft^2)",
"Floor Area, Conditioned (ft^2)",
"Floor Area, Attic (ft^2)",
"Floor Area, Lighting (ft^2)",
"Roof Area (ft^2)",
"Window Area (ft^2)",
"Door Area (ft^2)",
"Duct Surface Area (ft^2)",
"Size, Heating System (kBtu/h)",
"Size, Cooling System (kBtu/h)",
"Size, Water Heater (gal)"
],
"choice_display_names": [
"",
"Fixed (1)",
"Wall Area, Above-Grade, Conditioned (ft^2)",
"Wall Area, Above-Grade, Exterior (ft^2)",
"Wall Area, Below-Grade (ft^2)",
"Floor Area, Conditioned (ft^2)",
"Floor Area, Attic (ft^2)",
"Floor Area, Lighting (ft^2)",
"Roof Area (ft^2)",
"Window Area (ft^2)",
"Door Area (ft^2)",
"Duct Surface Area (ft^2)",
"Size, Heating System (kBtu/h)",
"Size, Cooling System (kBtu/h)",
"Size, Water Heater (gal)"
],
"display_name_short": "option_1_cost_1_multiplier",
"inputs": {
"relationship": null,
"choiceDisplayNames": [
"",
"Fixed (1)",
"Wall Area, Above-Grade, Conditioned (ft^2)",
"Wall Area, Above-Grade, Exterior (ft^2)",
"Wall Area, Below-Grade (ft^2)",
"Floor Area, Conditioned (ft^2)",
"Floor Area, Attic (ft^2)",
"Floor Area, Lighting (ft^2)",
"Roof Area (ft^2)",
"Window Area (ft^2)",
"Door Area (ft^2)",
"Duct Surface Area (ft^2)",
"Size, Heating System (kBtu/h)",
"Size, Cooling System (kBtu/h)",
"Size, Water Heater (gal)"
],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",
"default_value": "Window Area (ft^2)"
},
"$$hashKey": "object:33143"
},
{
"name": "option_1_cost_2_value",
"display_name": "Option 1 Cost 2 Value",
"description": "Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier).",
"type": "Double",
"required": false,
"model_dependent": false,
"units": "$",
"display_name_short": "option_1_cost_2_value",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 0,
"minimum": 0,
"mean": 0,
"deltaX": 0,
"stdDev": 0,
"default_value": 0
},
"$$hashKey": "object:33144"
},
{
"name": "option_1_cost_2_multiplier",
"display_name": "Option 1 Cost 2 Multiplier",
"description": "Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier).",
"type": "Choice",
"required": false,
"model_dependent": false,
"default_value": "",
"choice_values": [
"",
"Fixed (1)",
"Wall Area, Above-Grade, Conditioned (ft^2)",
"Wall Area, Above-Grade, Exterior (ft^2)",
"Wall Area, Below-Grade (ft^2)",
"Floor Area, Conditioned (ft^2)",
"Floor Area, Attic (ft^2)",
"Floor Area, Lighting (ft^2)",
"Roof Area (ft^2)",
"Window Area (ft^2)",
"Door Area (ft^2)",
"Duct Surface Area (ft^2)",
"Size, Heating System (kBtu/h)",
"Size, Cooling System (kBtu/h)",
"Size, Water Heater (gal)"
],
"choice_display_names": [
"",
"Fixed (1)",
"Wall Area, Above-Grade, Conditioned (ft^2)",
"Wall Area, Above-Grade, Exterior (ft^2)",
"Wall Area, Below-Grade (ft^2)",
"Floor Area, Conditioned (ft^2)",
"Floor Area, Attic (ft^2)",
"Floor Area, Lighting (ft^2)",
"Roof Area (ft^2)",
"Window Area (ft^2)",
"Door Area (ft^2)",
"Duct Surface Area (ft^2)",
"Size, Heating System (kBtu/h)",
"Size, Cooling System (kBtu/h)",
"Size, Water Heater (gal)"
],
"display_name_short": "option_1_cost_2_multiplier",
"inputs": {
"relationship": null,
"choiceDisplayNames": [
"",
"Fixed (1)",
"Wall Area, Above-Grade, Conditioned (ft^2)",
"Wall Area, Above-Grade, Exterior (ft^2)",
"Wall Area, Below-Grade (ft^2)",
"Floor Area, Conditioned (ft^2)",
"Floor Area, Attic (ft^2)",
"Floor Area, Lighting (ft^2)",
"Roof Area (ft^2)",
"Window Area (ft^2)",
"Door Area (ft^2)",
"Duct Surface Area (ft^2)",
"Size, Heating System (kBtu/h)",
"Size, Cooling System (kBtu/h)",
"Size, Water Heater (gal)"
],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",
"default_value": ""
},
"$$hashKey": "object:33145"
},
{
"name": "option_1_lifetime",
"display_name": "Option 1 Lifetime",
"description": "The option lifetime.",
"type": "Double",
"required": false,
"model_dependent": false,
"units": "years",
"display_name_short": "option_1_lifetime",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 0,
"minimum": 0,
"mean": 0,
"deltaX": 0,
"stdDev": 0,
"default_value": 30
},
"$$hashKey": "object:33146"
},
{
"name": "option_2",
"display_name": "Option 2",
"description": "Specify the parameter|option as found in resources\\options_lookup.tsv.",
"type": "String",
"required": false,
"model_dependent": false,
"display_name_short": "option_2",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",
"default_value": ""
},
"$$hashKey": "object:33147"
},
{
"name": "option_2_apply_logic",
"display_name": "Option 2 Apply Logic",
"description": "Logic that specifies if the Option 2 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not.",
"type": "String",
"required": false,
"model_dependent": false,
"display_name_short": "option_2_apply_logic",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",
"default_value": ""
},
"$$hashKey": "object:33148"
},
{
"name": "option_2_cost_1_value",
"display_name": "Option 2 Cost 1 Value",
"description": "Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier).",
"type": "Double",
"required": false,
"model_dependent": false,
"units": "$",
"display_name_short": "option_2_cost_1_value",
"inputs": {
"relationship": null,
"choiceDisplayNames": [],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": 0,
"minimum": 0,
"mean": 0,
"deltaX": 0,
"stdDev": 0,
"default_value": 0
},
"$$hashKey": "object:33149"
},
{
"name": "option_2_cost_1_multiplier",
"display_name": "Option 2 Cost 1 Multiplier",
"description": "Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier).",
"type": "Choice",
"required": false,
"model_dependent": false,
"default_value": "",
"choice_values": [
"",
"Fixed (1)",
"Wall Area, Above-Grade, Conditioned (ft^2)",
"Wall Area, Above-Grade, Exterior (ft^2)",
"Wall Area, Below-Grade (ft^2)",
"Floor Area, Conditioned (ft^2)",
"Floor Area, Attic (ft^2)",
"Floor Area, Lighting (ft^2)",
"Roof Area (ft^2)",
"Window Area (ft^2)",
"Door Area (ft^2)",
"Duct Surface Area (ft^2)",
"Size, Heating System (kBtu/h)",
"Size, Cooling System (kBtu/h)",
"Size, Water Heater (gal)"
],
"choice_display_names": [
"",
"Fixed (1)",
"Wall Area, Above-Grade, Conditioned (ft^2)",
"Wall Area, Above-Grade, Exterior (ft^2)",
"Wall Area, Below-Grade (ft^2)",
"Floor Area, Conditioned (ft^2)",
"Floor Area, Attic (ft^2)",
"Floor Area, Lighting (ft^2)",
"Roof Area (ft^2)",
"Window Area (ft^2)",
"Door Area (ft^2)",
"Duct Surface Area (ft^2)",
"Size, Heating System (kBtu/h)",
"Size, Cooling System (kBtu/h)",
"Size, Water Heater (gal)"
],
"display_name_short": "option_2_cost_1_multiplier",
"inputs": {
"relationship": null,
"choiceDisplayNames": [
"",
"Fixed (1)",
"Wall Area, Above-Grade, Conditioned (ft^2)",
"Wall Area, Above-Grade, Exterior (ft^2)",
"Wall Area, Below-Grade (ft^2)",
"Floor Area, Conditioned (ft^2)",
"Floor Area, Attic (ft^2)",
"Floor Area, Lighting (ft^2)",
"Roof Area (ft^2)",
"Window Area (ft^2)",
"Door Area (ft^2)",
"Duct Surface Area (ft^2)",
"Size, Heating System (kBtu/h)",
"Size, Cooling System (kBtu/h)",
"Size, Water Heater (gal)"
],
"variableSetting": "Argument",
"distribution": "Uniform",
"discreteVariables": [],
"maximum": "",
"minimum": "",
"mean": "",
"deltaX": "",
"stdDev": "",