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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -6
- data/README.md +55 -7
- data/Rakefile +10 -0
- data/lib/openstudio/analysis/algorithm_attributes.rb +22 -0
- data/lib/openstudio/analysis/formulation.rb +174 -0
- data/lib/openstudio/analysis/translator/excel.rb +65 -48
- data/lib/openstudio/analysis/version.rb +1 -1
- data/lib/openstudio/analysis/workflow.rb +197 -0
- data/lib/openstudio/analysis/workflow_step.rb +312 -0
- data/lib/openstudio/analysis.rb +8 -0
- data/lib/openstudio/helpers/string.rb +22 -22
- data/lib/openstudio/templates/analysis.json.erb +0 -1
- data/lib/openstudio-analysis.rb +9 -0
- data/spec/files/0_1_09_small_list_incomplete.xlsx +0 -0
- data/spec/files/0_2_0_template_simpletest.xlsx +0 -0
- data/spec/files/0_4_0_lhs_discrete_continuous.xlsx +0 -0
- data/spec/files/analysis/example_analysis_api.json +656 -0
- data/spec/files/analysis/examples/discrete_lhs_example.json +809 -0
- data/spec/files/analysis/examples/medium_office_example.json +1673 -0
- data/spec/files/analysis/lhs_discrete_and_continuous_variables_api.json +1230 -0
- data/spec/files/analysis/medium_office.json +91 -92
- data/spec/files/analysis/medium_office.zip +0 -0
- data/spec/files/analysis/name_goes_here_api.json +1681 -0
- data/spec/files/analysis/output_vars_api.json +632 -0
- data/spec/files/analysis/preflight_api.json +1518 -0
- data/spec/files/analysis/simple_test_api.json +519 -0
- data/spec/files/analysis/test_model_api.json +493 -0
- data/spec/files/export/analysis/0_1_09_outputvars.json +38 -39
- data/spec/files/export/analysis/0_1_09_outputvars.zip +0 -0
- data/spec/files/export/analysis/0_1_11_discrete_variables.json +46 -47
- data/spec/files/export/analysis/0_1_11_discrete_variables.zip +0 -0
- data/spec/files/export/analysis/0_1_12_discrete_dynamic_columns.json +8 -9
- data/spec/files/export/analysis/0_1_12_discrete_dynamic_columns.zip +0 -0
- data/spec/files/export/analysis/0_2_0_template_simpletest.json +19 -14
- data/spec/files/export/analysis/0_2_0_template_simpletest.zip +0 -0
- data/spec/files/export/analysis/0_3_0_outputs.json +99 -100
- data/spec/files/export/analysis/0_3_0_outputs.zip +0 -0
- data/spec/files/export/analysis/{6d6a08db-fdf8-4bb5-8ad3-18c471418c72.json → 276ccf51-ed22-4604-a380-8985cec5efe8.json} +103 -104
- data/spec/files/export/analysis/{6d6a08db-fdf8-4bb5-8ad3-18c471418c72.zip → 276ccf51-ed22-4604-a380-8985cec5efe8.zip} +0 -0
- data/spec/files/export/analysis/{55086845-70cf-487f-87f6-7a147cbf1e72.json → 639cb8a5-cdbb-4b69-955a-cbb650f6872b.json} +107 -108
- data/spec/files/export/analysis/{55086845-70cf-487f-87f6-7a147cbf1e72.zip → 639cb8a5-cdbb-4b69-955a-cbb650f6872b.zip} +0 -0
- data/spec/files/export/analysis/{10c791ce-cba7-4506-a863-3fb15703889b.json → 9560f95b-5730-4038-a95b-328c825c596b.json} +99 -100
- data/spec/files/export/analysis/{10c791ce-cba7-4506-a863-3fb15703889b.zip → 9560f95b-5730-4038-a95b-328c825c596b.zip} +0 -0
- data/spec/files/export/analysis/{f028bfbe-e30e-488d-adad-a60a62bbf7e0.json → c50f0062-cdfb-4dec-bc02-215f6c29af3c.json} +107 -108
- data/spec/files/export/analysis/{f028bfbe-e30e-488d-adad-a60a62bbf7e0.zip → c50f0062-cdfb-4dec-bc02-215f6c29af3c.zip} +0 -0
- data/spec/files/export/analysis/discrete_lhs_example.json +1185 -0
- data/spec/files/export/analysis/discrete_lhs_example.zip +0 -0
- data/spec/files/export/analysis/small_seed.json +38 -39
- data/spec/files/export/analysis/small_seed.zip +0 -0
- data/spec/files/export/workflow/analysis.json +23 -0
- data/spec/files/measures/ActualMeasureNoJson/measure.json +25 -0
- data/spec/files/measures/ActualMeasureNoJson/measure.rb +80 -0
- data/spec/files/measures/ActualMeasureNoJson/measure.xml +2 -0
- data/spec/files/measures/SetThermostatSchedules/measure.json +63 -0
- data/spec/files/measures/SetThermostatSchedules/measure.rb +254 -0
- data/spec/files/measures/SetThermostatSchedules/measure.xml +2 -0
- data/spec/openstudio/excel_spec.rb +11 -11
- data/spec/openstudio/formulation_spec.rb +107 -0
- data/spec/openstudio/workflow_spec.rb +90 -0
- data/spec/openstudio/workflow_step_spec.rb +116 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-Formulation.xml +28 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-create-a-new-object-instance.xml +2 -2
- data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-test-not-localhost.xml +2 -2
- data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi.xml +1 -1
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-discrete-variables.xml +30 -4
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-discrete-with-dynamic-columns.xml +11 -3
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-no-variables-defined.xml +6 -6
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup-with-user.xml +2 -2
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup.xml +2 -2
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-setup-output-variables.xml +52 -8
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-setup-version-0-1-9.xml +22 -5
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-incomplete-variables.xml +2 -2
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables-should-not-validate.xml +2 -2
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables.xml +28 -5
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-with-with-repeated-variable-names.xml +2 -2
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-1-10.xml +3 -3
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-2-0-simple.xml +13 -6
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-2-0.xml +55 -5
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-dynamic-uuid-assignments.xml +9 -4
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-measure-existence-checks.xml +8 -3
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-objective-functions.xml +13 -5
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-3-and-short-display-names.xml +9 -4
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-5-and-measure-paths.xml +9 -4
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-7-and-worker-init-final-scripts.0.xml +40 -2
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-7-and-worker-init-final-scripts.xml +9 -4
- data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel.xml +1 -1
- data/spec/reports/SPEC-OpenStudio-Analysis-Workflow.xml +31 -0
- data/spec/reports/SPEC-OpenStudio-Analysis-WorkflowStep.xml +29 -0
- data/spec/spec_helper.rb +1 -1
- metadata +87 -18
|
@@ -358,14 +358,13 @@
|
|
|
358
358
|
"heating_gas_dec"
|
|
359
359
|
]
|
|
360
360
|
},
|
|
361
|
-
"name": "Problem",
|
|
362
361
|
"workflow": [
|
|
363
362
|
{
|
|
364
363
|
"measure_definition_class_name": "ReduceLightingLoadsByPercentage",
|
|
365
364
|
"measure_definition_directory": "./measures/ReduceLightingLoadsByPercentage",
|
|
366
365
|
"measure_definition_display_name": "ReduceLightingLoadsByPercentage",
|
|
367
|
-
"measure_definition_uuid": "
|
|
368
|
-
"measure_definition_version_uuid": "
|
|
366
|
+
"measure_definition_uuid": "efe0d130-8090-4410-be09-740d8e200883",
|
|
367
|
+
"measure_definition_version_uuid": "a5fc3585-2cd7-4e68-b54d-12e41d480f2e",
|
|
369
368
|
"measure_type": "RubyMeasure",
|
|
370
369
|
"arguments": [
|
|
371
370
|
{
|
|
@@ -470,21 +469,21 @@
|
|
|
470
469
|
"value_type": "double",
|
|
471
470
|
"variable": true,
|
|
472
471
|
"variable_type": "RubyContinuousVariable",
|
|
473
|
-
"uuid": "
|
|
474
|
-
"version_uuid": "
|
|
472
|
+
"uuid": "f7a9103e-bb57-45b0-a172-670ef113d0fc",
|
|
473
|
+
"version_uuid": "628d60e1-9ec6-4373-8aab-ed28fe31f042"
|
|
475
474
|
}
|
|
476
475
|
],
|
|
477
476
|
"workflow_index": 0,
|
|
478
477
|
"workflow_step_type": "Measure",
|
|
479
|
-
"uuid": "
|
|
480
|
-
"version_uuid": "
|
|
478
|
+
"uuid": "b1823c75-3803-4016-b04b-a4f7597a1b6c",
|
|
479
|
+
"version_uuid": "4ffc69fd-3c13-403b-b2a6-adf05b5f5b07"
|
|
481
480
|
},
|
|
482
481
|
{
|
|
483
482
|
"measure_definition_class_name": "ReduceElectricEquipmentLoadsByPercentage",
|
|
484
483
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
485
484
|
"measure_definition_display_name": "ReduceElectricEquipmentLoadsByPercentage",
|
|
486
|
-
"measure_definition_uuid": "
|
|
487
|
-
"measure_definition_version_uuid": "
|
|
485
|
+
"measure_definition_uuid": "dbf4b6b1-18cf-4b87-a16b-89b908bb7f70",
|
|
486
|
+
"measure_definition_version_uuid": "73d4637e-8ff5-4fb4-92ca-0463ae1cc9f3",
|
|
488
487
|
"measure_type": "RubyMeasure",
|
|
489
488
|
"arguments": [
|
|
490
489
|
{
|
|
@@ -589,21 +588,21 @@
|
|
|
589
588
|
"value_type": "double",
|
|
590
589
|
"variable": true,
|
|
591
590
|
"variable_type": "RubyContinuousVariable",
|
|
592
|
-
"uuid": "
|
|
593
|
-
"version_uuid": "
|
|
591
|
+
"uuid": "e92ce800-27ed-47a7-835d-4f9b1083bfcb",
|
|
592
|
+
"version_uuid": "ee91d7e0-e22d-4309-9489-8cd2048c4359"
|
|
594
593
|
}
|
|
595
594
|
],
|
|
596
595
|
"workflow_index": 1,
|
|
597
596
|
"workflow_step_type": "Measure",
|
|
598
|
-
"uuid": "
|
|
599
|
-
"version_uuid": "
|
|
597
|
+
"uuid": "ab0df0b7-a9ca-4edb-b1c4-0a32d05a3083",
|
|
598
|
+
"version_uuid": "55b2929c-825b-45f3-8b65-7380cd7f3bdf"
|
|
600
599
|
},
|
|
601
600
|
{
|
|
602
601
|
"measure_definition_class_name": "ReduceSpaceInfiltrationByPercentage",
|
|
603
602
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
604
603
|
"measure_definition_display_name": "ReduceSpaceInfiltrationByPercentage",
|
|
605
|
-
"measure_definition_uuid": "
|
|
606
|
-
"measure_definition_version_uuid": "
|
|
604
|
+
"measure_definition_uuid": "e4c8af6c-fb97-4046-a4c1-a3084503d922",
|
|
605
|
+
"measure_definition_version_uuid": "e03ae757-40a2-4be9-859e-b0c945dbb357",
|
|
607
606
|
"measure_type": "RubyMeasure",
|
|
608
607
|
"arguments": [
|
|
609
608
|
{
|
|
@@ -680,21 +679,21 @@
|
|
|
680
679
|
"value_type": "double",
|
|
681
680
|
"variable": true,
|
|
682
681
|
"variable_type": "RubyContinuousVariable",
|
|
683
|
-
"uuid": "
|
|
684
|
-
"version_uuid": "
|
|
682
|
+
"uuid": "febb57b6-3304-461b-ab23-30771af84cc2",
|
|
683
|
+
"version_uuid": "91880d8a-ac57-4091-8c2e-16ce019ca248"
|
|
685
684
|
}
|
|
686
685
|
],
|
|
687
686
|
"workflow_index": 2,
|
|
688
687
|
"workflow_step_type": "Measure",
|
|
689
|
-
"uuid": "
|
|
690
|
-
"version_uuid": "
|
|
688
|
+
"uuid": "a5be7b26-a48b-4641-9e25-3817d6e8e209",
|
|
689
|
+
"version_uuid": "2e919435-d5fa-437d-99fc-909d9eac2631"
|
|
691
690
|
},
|
|
692
691
|
{
|
|
693
692
|
"measure_definition_class_name": "AdjustTheromstatSetpointsByDegrees",
|
|
694
693
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
695
694
|
"measure_definition_display_name": "AdjustTheromstatSetpointsByDegrees",
|
|
696
|
-
"measure_definition_uuid": "
|
|
697
|
-
"measure_definition_version_uuid": "
|
|
695
|
+
"measure_definition_uuid": "8c3eebb2-0d5f-4681-9841-fec2c8fa9ddc",
|
|
696
|
+
"measure_definition_version_uuid": "631f5de9-2a66-4a2a-9495-4d0b949eee76",
|
|
698
697
|
"measure_type": "RubyMeasure",
|
|
699
698
|
"arguments": [
|
|
700
699
|
{
|
|
@@ -750,8 +749,8 @@
|
|
|
750
749
|
"value_type": "double",
|
|
751
750
|
"variable": true,
|
|
752
751
|
"variable_type": "RubyContinuousVariable",
|
|
753
|
-
"uuid": "
|
|
754
|
-
"version_uuid": "
|
|
752
|
+
"uuid": "4e3e905d-cdbe-4c3e-b920-0c0ff2ed226d",
|
|
753
|
+
"version_uuid": "b5b8714b-1d90-4d87-9205-e3a3577768af"
|
|
755
754
|
},
|
|
756
755
|
{
|
|
757
756
|
"argument": {
|
|
@@ -795,21 +794,21 @@
|
|
|
795
794
|
"value_type": "double",
|
|
796
795
|
"variable": true,
|
|
797
796
|
"variable_type": "RubyContinuousVariable",
|
|
798
|
-
"uuid": "
|
|
799
|
-
"version_uuid": "
|
|
797
|
+
"uuid": "410f8ca9-a54f-4fa1-9115-5095aac4e22f",
|
|
798
|
+
"version_uuid": "8a5cceb5-7ec8-47dd-adc3-b3acd3e35717"
|
|
800
799
|
}
|
|
801
800
|
],
|
|
802
801
|
"workflow_index": 3,
|
|
803
802
|
"workflow_step_type": "Measure",
|
|
804
|
-
"uuid": "
|
|
805
|
-
"version_uuid": "
|
|
803
|
+
"uuid": "0261f535-0930-4aae-82b9-05e61c5f375f",
|
|
804
|
+
"version_uuid": "fc04c699-5a65-4d5d-86c6-abcf00cba86d"
|
|
806
805
|
},
|
|
807
806
|
{
|
|
808
807
|
"measure_definition_class_name": "ReduceVentilationByPercentage",
|
|
809
808
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
810
809
|
"measure_definition_display_name": "ReduceVentilationByPercentage",
|
|
811
|
-
"measure_definition_uuid": "
|
|
812
|
-
"measure_definition_version_uuid": "
|
|
810
|
+
"measure_definition_uuid": "cb685095-1773-4119-86de-06e829e02cc5",
|
|
811
|
+
"measure_definition_version_uuid": "7ca5b313-4827-49dd-b5fc-745440e39c2c",
|
|
813
812
|
"measure_type": "RubyMeasure",
|
|
814
813
|
"arguments": [
|
|
815
814
|
{
|
|
@@ -865,21 +864,21 @@
|
|
|
865
864
|
"value_type": "double",
|
|
866
865
|
"variable": true,
|
|
867
866
|
"variable_type": "RubyContinuousVariable",
|
|
868
|
-
"uuid": "
|
|
869
|
-
"version_uuid": "
|
|
867
|
+
"uuid": "b809a8e9-9b4c-4e86-9c0a-3abe075fe389",
|
|
868
|
+
"version_uuid": "8f604a73-e5fe-4493-b121-7d624477299d"
|
|
870
869
|
}
|
|
871
870
|
],
|
|
872
871
|
"workflow_index": 4,
|
|
873
872
|
"workflow_step_type": "Measure",
|
|
874
|
-
"uuid": "
|
|
875
|
-
"version_uuid": "
|
|
873
|
+
"uuid": "2bca2b9f-ddcb-4967-a21a-6bc5ea1ded2c",
|
|
874
|
+
"version_uuid": "c66bffb2-fd5b-4ccb-874b-bc7482e0ad62"
|
|
876
875
|
},
|
|
877
876
|
{
|
|
878
877
|
"measure_definition_class_name": "EnableEconomizerControl",
|
|
879
878
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
880
879
|
"measure_definition_display_name": "EnableEconomizerControl",
|
|
881
|
-
"measure_definition_uuid": "
|
|
882
|
-
"measure_definition_version_uuid": "
|
|
880
|
+
"measure_definition_uuid": "0a11691b-3509-4355-a767-3ed1c5ae148e",
|
|
881
|
+
"measure_definition_version_uuid": "8e837e20-61c9-4857-9a10-0b797f826c1c",
|
|
883
882
|
"measure_type": "RubyMeasure",
|
|
884
883
|
"arguments": [
|
|
885
884
|
{
|
|
@@ -1019,21 +1018,21 @@
|
|
|
1019
1018
|
"value_type": "double",
|
|
1020
1019
|
"variable": true,
|
|
1021
1020
|
"variable_type": "RubyContinuousVariable",
|
|
1022
|
-
"uuid": "
|
|
1023
|
-
"version_uuid": "
|
|
1021
|
+
"uuid": "3d8df33c-ce0a-46a0-a4fb-726fc75130ad",
|
|
1022
|
+
"version_uuid": "b38a8193-a5f9-458e-bdb4-959d82b0993c"
|
|
1024
1023
|
}
|
|
1025
1024
|
],
|
|
1026
1025
|
"workflow_index": 5,
|
|
1027
1026
|
"workflow_step_type": "Measure",
|
|
1028
|
-
"uuid": "
|
|
1029
|
-
"version_uuid": "
|
|
1027
|
+
"uuid": "b97c5ece-409d-4c64-baa2-ffb881b3f1d4",
|
|
1028
|
+
"version_uuid": "44192699-7924-4a0e-b8ef-166764f73d12"
|
|
1030
1029
|
},
|
|
1031
1030
|
{
|
|
1032
1031
|
"measure_definition_class_name": "SetBoilerThermalEfficiency",
|
|
1033
1032
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
1034
1033
|
"measure_definition_display_name": "SetBoilerThermalEfficiency",
|
|
1035
|
-
"measure_definition_uuid": "
|
|
1036
|
-
"measure_definition_version_uuid": "
|
|
1034
|
+
"measure_definition_uuid": "4bcdc480-254f-449d-8395-ccacc0ccd609",
|
|
1035
|
+
"measure_definition_version_uuid": "5f61d4d5-8581-49ca-90ec-e91faa6ad443",
|
|
1037
1036
|
"measure_type": "RubyMeasure",
|
|
1038
1037
|
"arguments": [
|
|
1039
1038
|
{
|
|
@@ -1068,14 +1067,14 @@
|
|
|
1068
1067
|
"display_name": "Fuel type",
|
|
1069
1068
|
"display_name_short": "Fuel type",
|
|
1070
1069
|
"name": "fuel_type_widget",
|
|
1071
|
-
"value": 0.0,
|
|
1070
|
+
"value": "0.0",
|
|
1072
1071
|
"value_type": "choice"
|
|
1073
1072
|
},
|
|
1074
1073
|
{
|
|
1075
1074
|
"display_name": "ASHRAE Standards 90.1",
|
|
1076
1075
|
"display_name_short": "ASHRAE Standards 90.1",
|
|
1077
1076
|
"name": "standards_widget",
|
|
1078
|
-
"value": 0.0,
|
|
1077
|
+
"value": "0.0",
|
|
1079
1078
|
"value_type": "choice"
|
|
1080
1079
|
}
|
|
1081
1080
|
],
|
|
@@ -1124,21 +1123,21 @@
|
|
|
1124
1123
|
"value_type": "double",
|
|
1125
1124
|
"variable": true,
|
|
1126
1125
|
"variable_type": "RubyContinuousVariable",
|
|
1127
|
-
"uuid": "
|
|
1128
|
-
"version_uuid": "
|
|
1126
|
+
"uuid": "a4c7b077-bc86-458c-a771-f6e2320f4450",
|
|
1127
|
+
"version_uuid": "c6947110-c665-450f-bb5c-f64486dcace1"
|
|
1129
1128
|
}
|
|
1130
1129
|
],
|
|
1131
1130
|
"workflow_index": 6,
|
|
1132
1131
|
"workflow_step_type": "Measure",
|
|
1133
|
-
"uuid": "
|
|
1134
|
-
"version_uuid": "
|
|
1132
|
+
"uuid": "7fb81108-9bf5-475e-869f-11d63faee3a2",
|
|
1133
|
+
"version_uuid": "788aa6f2-bbdc-41b3-8d90-9664e4b983d6"
|
|
1135
1134
|
},
|
|
1136
1135
|
{
|
|
1137
1136
|
"measure_definition_class_name": "IncreaseInsulationRValueForExteriorWalls",
|
|
1138
1137
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
1139
1138
|
"measure_definition_display_name": "IncreaseInsulationRValueForExteriorWalls",
|
|
1140
|
-
"measure_definition_uuid": "
|
|
1141
|
-
"measure_definition_version_uuid": "
|
|
1139
|
+
"measure_definition_uuid": "bb5fa10a-fca9-4881-b820-a0d945f07985",
|
|
1140
|
+
"measure_definition_version_uuid": "2ec8ab86-a232-463e-aad1-57d677b0b099",
|
|
1142
1141
|
"measure_type": "RubyMeasure",
|
|
1143
1142
|
"arguments": [
|
|
1144
1143
|
{
|
|
@@ -1215,21 +1214,21 @@
|
|
|
1215
1214
|
"value_type": "double",
|
|
1216
1215
|
"variable": true,
|
|
1217
1216
|
"variable_type": "RubyContinuousVariable",
|
|
1218
|
-
"uuid": "
|
|
1219
|
-
"version_uuid": "
|
|
1217
|
+
"uuid": "6e1e8057-36bd-426a-88e1-6269aca9abbc",
|
|
1218
|
+
"version_uuid": "cc0bc4bb-1c60-4224-8fea-1d2910d5059b"
|
|
1220
1219
|
}
|
|
1221
1220
|
],
|
|
1222
1221
|
"workflow_index": 7,
|
|
1223
1222
|
"workflow_step_type": "Measure",
|
|
1224
|
-
"uuid": "
|
|
1225
|
-
"version_uuid": "
|
|
1223
|
+
"uuid": "e488ef70-003c-4ff5-b31f-90074b55f180",
|
|
1224
|
+
"version_uuid": "b421a709-9a66-4b37-8324-18005c5d8556"
|
|
1226
1225
|
},
|
|
1227
1226
|
{
|
|
1228
1227
|
"measure_definition_class_name": "SetChillerCOP",
|
|
1229
1228
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
1230
1229
|
"measure_definition_display_name": "SetChillerCOP",
|
|
1231
|
-
"measure_definition_uuid": "
|
|
1232
|
-
"measure_definition_version_uuid": "
|
|
1230
|
+
"measure_definition_uuid": "d82e3ae8-9cd8-4743-be4e-34c7797d9ed7",
|
|
1231
|
+
"measure_definition_version_uuid": "c409a908-5cce-4e40-bb26-f505194cc515",
|
|
1233
1232
|
"measure_type": "RubyMeasure",
|
|
1234
1233
|
"arguments": [
|
|
1235
1234
|
{
|
|
@@ -1285,21 +1284,21 @@
|
|
|
1285
1284
|
"value_type": "double",
|
|
1286
1285
|
"variable": true,
|
|
1287
1286
|
"variable_type": "RubyContinuousVariable",
|
|
1288
|
-
"uuid": "
|
|
1289
|
-
"version_uuid": "
|
|
1287
|
+
"uuid": "2000ae88-5c23-4ef9-8fc2-232eac2d8dff",
|
|
1288
|
+
"version_uuid": "c8020379-771b-4b4a-b77d-ca0930d19c20"
|
|
1290
1289
|
}
|
|
1291
1290
|
],
|
|
1292
1291
|
"workflow_index": 8,
|
|
1293
1292
|
"workflow_step_type": "Measure",
|
|
1294
|
-
"uuid": "
|
|
1295
|
-
"version_uuid": "
|
|
1293
|
+
"uuid": "3a8e5995-15eb-4a7a-8b6b-6466671102d2",
|
|
1294
|
+
"version_uuid": "0689a072-d00d-41b0-a10d-692e8b994480"
|
|
1296
1295
|
},
|
|
1297
1296
|
{
|
|
1298
1297
|
"measure_definition_class_name": "SetHeatingandCoolingSizingFactors",
|
|
1299
1298
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
1300
1299
|
"measure_definition_display_name": "SetHeatingandCoolingSizingFactors",
|
|
1301
|
-
"measure_definition_uuid": "
|
|
1302
|
-
"measure_definition_version_uuid": "
|
|
1300
|
+
"measure_definition_uuid": "d540adf3-e0e3-49f9-9341-a003b264ec0e",
|
|
1301
|
+
"measure_definition_version_uuid": "efca9c35-1fd2-46b3-b50d-d80264ac7de8",
|
|
1303
1302
|
"measure_type": "RubyMeasure",
|
|
1304
1303
|
"arguments": [
|
|
1305
1304
|
|
|
@@ -1349,8 +1348,8 @@
|
|
|
1349
1348
|
"value_type": "double",
|
|
1350
1349
|
"variable": true,
|
|
1351
1350
|
"variable_type": "RubyContinuousVariable",
|
|
1352
|
-
"uuid": "
|
|
1353
|
-
"version_uuid": "
|
|
1351
|
+
"uuid": "9332844b-13c3-4579-b5a2-ee9d81755fda",
|
|
1352
|
+
"version_uuid": "828bd706-85e6-4a8c-817f-e897b73f204a"
|
|
1354
1353
|
},
|
|
1355
1354
|
{
|
|
1356
1355
|
"argument": {
|
|
@@ -1394,21 +1393,21 @@
|
|
|
1394
1393
|
"value_type": "double",
|
|
1395
1394
|
"variable": true,
|
|
1396
1395
|
"variable_type": "RubyContinuousVariable",
|
|
1397
|
-
"uuid": "
|
|
1398
|
-
"version_uuid": "
|
|
1396
|
+
"uuid": "93fed81e-bb7e-47dc-a6da-5d2ab0290d9e",
|
|
1397
|
+
"version_uuid": "4d4205a2-aab5-4e12-83ba-3e138b071a67"
|
|
1399
1398
|
}
|
|
1400
1399
|
],
|
|
1401
1400
|
"workflow_index": 9,
|
|
1402
1401
|
"workflow_step_type": "Measure",
|
|
1403
|
-
"uuid": "
|
|
1404
|
-
"version_uuid": "
|
|
1402
|
+
"uuid": "56c4d973-227f-49e7-8316-ec23c6fc4728",
|
|
1403
|
+
"version_uuid": "17ab4238-7a6c-4357-9550-3e35d3006159"
|
|
1405
1404
|
},
|
|
1406
1405
|
{
|
|
1407
1406
|
"measure_definition_class_name": "SetChilledWaterLoopTemperature",
|
|
1408
1407
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
1409
1408
|
"measure_definition_display_name": "SetChilledWaterLoopTemperature",
|
|
1410
|
-
"measure_definition_uuid": "
|
|
1411
|
-
"measure_definition_version_uuid": "
|
|
1409
|
+
"measure_definition_uuid": "a8700344-3376-41b3-a8d4-09170fd8022c",
|
|
1410
|
+
"measure_definition_version_uuid": "5ddd3a1f-10e1-4d1f-8042-bdb67881c0ce",
|
|
1412
1411
|
"measure_type": "RubyMeasure",
|
|
1413
1412
|
"arguments": [
|
|
1414
1413
|
|
|
@@ -1458,21 +1457,21 @@
|
|
|
1458
1457
|
"value_type": "double",
|
|
1459
1458
|
"variable": true,
|
|
1460
1459
|
"variable_type": "RubyContinuousVariable",
|
|
1461
|
-
"uuid": "
|
|
1462
|
-
"version_uuid": "
|
|
1460
|
+
"uuid": "2db84606-31d0-4cac-9e2d-78be6ff24739",
|
|
1461
|
+
"version_uuid": "eaad0fdf-0137-4289-bb7c-6b8a9cc12aad"
|
|
1463
1462
|
}
|
|
1464
1463
|
],
|
|
1465
1464
|
"workflow_index": 10,
|
|
1466
1465
|
"workflow_step_type": "Measure",
|
|
1467
|
-
"uuid": "
|
|
1468
|
-
"version_uuid": "
|
|
1466
|
+
"uuid": "43cced18-acc0-40fe-80fc-c3475d01290c",
|
|
1467
|
+
"version_uuid": "e9238a39-ef8e-4dea-b6ef-7c81b40fc2d9"
|
|
1469
1468
|
},
|
|
1470
1469
|
{
|
|
1471
1470
|
"measure_definition_class_name": "SetHotWaterLoopTemperature",
|
|
1472
1471
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
1473
1472
|
"measure_definition_display_name": "SetHotWaterLoopTemperature",
|
|
1474
|
-
"measure_definition_uuid": "
|
|
1475
|
-
"measure_definition_version_uuid": "
|
|
1473
|
+
"measure_definition_uuid": "f533c738-e01e-4caa-8fa2-a4cad27cb3f1",
|
|
1474
|
+
"measure_definition_version_uuid": "e7e5d3f0-8e4a-44e2-804a-abe30ec784f6",
|
|
1476
1475
|
"measure_type": "RubyMeasure",
|
|
1477
1476
|
"arguments": [
|
|
1478
1477
|
|
|
@@ -1522,21 +1521,21 @@
|
|
|
1522
1521
|
"value_type": "double",
|
|
1523
1522
|
"variable": true,
|
|
1524
1523
|
"variable_type": "RubyContinuousVariable",
|
|
1525
|
-
"uuid": "
|
|
1526
|
-
"version_uuid": "
|
|
1524
|
+
"uuid": "ec9f62bd-5317-40bf-ac52-aaab0cc4d84b",
|
|
1525
|
+
"version_uuid": "d00ca112-323c-4426-8300-bce144577b41"
|
|
1527
1526
|
}
|
|
1528
1527
|
],
|
|
1529
1528
|
"workflow_index": 11,
|
|
1530
1529
|
"workflow_step_type": "Measure",
|
|
1531
|
-
"uuid": "
|
|
1532
|
-
"version_uuid": "
|
|
1530
|
+
"uuid": "993cb7ba-f877-498e-8f41-ebb05aede775",
|
|
1531
|
+
"version_uuid": "eabf58f2-f53e-493c-a326-227c6d09f30e"
|
|
1533
1532
|
},
|
|
1534
1533
|
{
|
|
1535
1534
|
"measure_definition_class_name": "SetMinimumVAVTerminalFlowFraction",
|
|
1536
1535
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
1537
1536
|
"measure_definition_display_name": "SetMinimumVAVTerminalFlowFraction",
|
|
1538
|
-
"measure_definition_uuid": "
|
|
1539
|
-
"measure_definition_version_uuid": "
|
|
1537
|
+
"measure_definition_uuid": "5083cbd8-f472-4822-9cf0-8b3693c6d5ad",
|
|
1538
|
+
"measure_definition_version_uuid": "a21473ff-0f32-4e8e-b86f-09817bca9a17",
|
|
1540
1539
|
"measure_type": "RubyMeasure",
|
|
1541
1540
|
"arguments": [
|
|
1542
1541
|
|
|
@@ -1586,21 +1585,21 @@
|
|
|
1586
1585
|
"value_type": "double",
|
|
1587
1586
|
"variable": true,
|
|
1588
1587
|
"variable_type": "RubyContinuousVariable",
|
|
1589
|
-
"uuid": "
|
|
1590
|
-
"version_uuid": "
|
|
1588
|
+
"uuid": "2d9c5f49-824d-486d-85b7-47b316cc9887",
|
|
1589
|
+
"version_uuid": "788dd259-2602-43d5-9ad7-0323cd616449"
|
|
1591
1590
|
}
|
|
1592
1591
|
],
|
|
1593
1592
|
"workflow_index": 12,
|
|
1594
1593
|
"workflow_step_type": "Measure",
|
|
1595
|
-
"uuid": "
|
|
1596
|
-
"version_uuid": "
|
|
1594
|
+
"uuid": "cbca7426-6d0b-4014-bddb-5195cf9e01e2",
|
|
1595
|
+
"version_uuid": "b7c80ebe-8f8d-4825-bb97-8c1d711b9a0a"
|
|
1597
1596
|
},
|
|
1598
1597
|
{
|
|
1599
1598
|
"measure_definition_class_name": "ModifyEnergyPlusFanVariableVolumeObjects",
|
|
1600
1599
|
"measure_definition_directory": "./measures/ExampleMeasure",
|
|
1601
1600
|
"measure_definition_display_name": "ModifyEnergyPlusFanVariableVolumeObjects",
|
|
1602
|
-
"measure_definition_uuid": "
|
|
1603
|
-
"measure_definition_version_uuid": "
|
|
1601
|
+
"measure_definition_uuid": "94408cc0-af21-48c6-b12c-65680dce30d4",
|
|
1602
|
+
"measure_definition_version_uuid": "1fc62b35-2cac-433c-bb88-0e7e41112b51",
|
|
1604
1603
|
"measure_type": "EnergyPlusMeasure",
|
|
1605
1604
|
"arguments": [
|
|
1606
1605
|
|
|
@@ -1637,7 +1636,7 @@
|
|
|
1637
1636
|
},
|
|
1638
1637
|
{
|
|
1639
1638
|
"name": "delta_x",
|
|
1640
|
-
"value":
|
|
1639
|
+
"value": 5.0
|
|
1641
1640
|
},
|
|
1642
1641
|
{
|
|
1643
1642
|
"name": "modes",
|
|
@@ -1650,14 +1649,14 @@
|
|
|
1650
1649
|
"value_type": "double",
|
|
1651
1650
|
"variable": true,
|
|
1652
1651
|
"variable_type": "RubyContinuousVariable",
|
|
1653
|
-
"uuid": "
|
|
1654
|
-
"version_uuid": "
|
|
1652
|
+
"uuid": "7af46a2c-53a5-4616-8f0b-5ce9a18d1d7f",
|
|
1653
|
+
"version_uuid": "6bc7a6fe-6f3d-4a30-b785-5fca1274327f"
|
|
1655
1654
|
}
|
|
1656
1655
|
],
|
|
1657
1656
|
"workflow_index": 13,
|
|
1658
1657
|
"workflow_step_type": "Measure",
|
|
1659
|
-
"uuid": "
|
|
1660
|
-
"version_uuid": "
|
|
1658
|
+
"uuid": "9dfe154e-c3e8-4ecd-9339-e3d76f8e17bf",
|
|
1659
|
+
"version_uuid": "3e9d5e7c-4d42-42a3-ab91-2e7c2e52aabf"
|
|
1661
1660
|
}
|
|
1662
1661
|
],
|
|
1663
1662
|
"analysis_type": "rgenoud"
|
|
Binary file
|