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
|
@@ -1,11 +1,28 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9" tests="4" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have a version and analysis name in machine format" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9" tests="4" time="0.389006" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:40-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have a version and analysis name in machine format" time="0.000209">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have the new settings" time="6.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have the new settings" time="6.2e-05">
|
|
6
6
|
</testcase>
|
|
7
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have algorithm setup" time="0.
|
|
7
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have algorithm setup" time="0.000936">
|
|
8
8
|
</testcase>
|
|
9
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should create a valid hash" time="0.
|
|
9
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should create a valid hash" time="0.006053">
|
|
10
10
|
</testcase>
|
|
11
|
+
<system-err>
|
|
12
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
13
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
14
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
15
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
16
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
17
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
18
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
19
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
20
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
21
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
22
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
23
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
24
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
25
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
26
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
27
|
+
</system-err>
|
|
11
28
|
</testsuite>
|
data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-incomplete-variables.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel small list of incomplete variables" tests="1" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel small list of incomplete variables should fail to process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel small list of incomplete variables" tests="1" time="0.423755" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:38-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel small list of incomplete variables should fail to process" time="0.353419">
|
|
4
4
|
</testcase>
|
|
5
5
|
</testsuite>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel small list of variables should not validate" tests="1" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should not validate should fail to process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel small list of variables should not validate" tests="1" time="0.441432" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:39-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should not validate should fail to process" time="0.364855">
|
|
4
4
|
</testcase>
|
|
5
5
|
</testsuite>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel small list of variables" tests="4" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have a model" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel small list of variables" tests="4" time="0.449821" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:39-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have a model" time="0.000185">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have a weather file" time="
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have a weather file" time="8.4e-05">
|
|
6
6
|
</testcase>
|
|
7
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have notes and source" time="
|
|
7
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have notes and source" time="7.2e-05">
|
|
8
8
|
</testcase>
|
|
9
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should write a json" time="0.
|
|
9
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should write a json" time="0.040363">
|
|
10
10
|
</testcase>
|
|
11
11
|
<system-out>
|
|
12
12
|
/Users/nlong/working/OpenStudio-analysis-gem/spec/files/partial_weather.epw
|
|
@@ -14,4 +14,27 @@ Creating JSON and ZIP file for Example Analysis:small_seed
|
|
|
14
14
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/reduce_lighting_loads_by_percentage to zip file
|
|
15
15
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/example_measure_auto_directory_name to zip file
|
|
16
16
|
</system-out>
|
|
17
|
+
<system-err>
|
|
18
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
19
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
20
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
21
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
22
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
23
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
24
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
25
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
26
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
27
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
28
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
29
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
30
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
31
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
32
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
33
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
34
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
35
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
36
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
37
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
38
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
39
|
+
</system-err>
|
|
17
40
|
</testsuite>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel small list with with repeated variable names" tests="1" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel small list with with repeated variable names should fail to process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel small list with with repeated variable names" tests="1" time="0.423443" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:39-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel small list with with repeated variable names should fail to process" time="0.346628">
|
|
4
4
|
</testcase>
|
|
5
5
|
</testsuite>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.1.10" tests="2" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.1.10 should process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.1.10" tests="2" time="0.381755" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:42-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.1.10 should process" time="0.307547">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.1.10 should have new setting variables" time="0.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.1.10 should have new setting variables" time="0.000164">
|
|
6
6
|
</testcase>
|
|
7
7
|
<system-out>
|
|
8
8
|
{"spreadsheet_version"=>"0.1.10", "user_id"=>"new_user", "openstudio_server_version"=>"1.3.2", "cluster_name"=>"Analysis Cluster", "server_instance_type"=>"m2.xlarge", "worker_instance_type"=>"m2.2xlarge", "worker_nodes"=>1.0}
|
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple" tests="4" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple" tests="4" time="0.410976" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:44-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should process" time="0.321746">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should have new setting variables" time="0.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should have new setting variables" time="0.000144">
|
|
6
6
|
</testcase>
|
|
7
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should have the new measure directory column" time="
|
|
7
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should have the new measure directory column" time="9.5e-05">
|
|
8
8
|
</testcase>
|
|
9
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should write a json" time="0.
|
|
9
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should write a json" time="0.011264">
|
|
10
10
|
</testcase>
|
|
11
11
|
<system-out>
|
|
12
12
|
{"spreadsheet_version"=>"0.2.0", "user_id"=>"new_user", "openstudio_server_version"=>"1.3.2", "cluster_name"=>"Analysis Cluster", "server_instance_type"=>"m2.2xlarge", "worker_instance_type"=>"cc2.8xlarge", "worker_nodes"=>2.0}
|
|
13
13
|
{"analysis_name"=>"simple_test", "measure_directory"=>"../../spec/files/measures", "export_directory"=>"../../spec/files/export/analysis", "allow_multiple_jobs"=>true, "use_server_as_worker"=>true, "simulate_data_point_filename"=>"simulate_data_point.rb", "run_data_point_filename"=>"run_openstudio_workflow_monthly.rb"}
|
|
14
|
-
Warning: 'baseline:Baseline' static value was empty or null, assuming optional and skipping
|
|
15
14
|
Creating JSON and ZIP file for simple_test:0_2_0_template_simpletest
|
|
16
15
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
|
|
17
16
|
</system-out>
|
|
17
|
+
<system-err>
|
|
18
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
|
|
19
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
20
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
21
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
|
|
22
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
23
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
24
|
+
</system-err>
|
|
18
25
|
</testsuite>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.2.0" tests="4" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.2.0" tests="4" time="0.975664" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:43-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should process" time="0.829658">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should have new setting variables" time="0.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should have new setting variables" time="0.000169">
|
|
6
6
|
</testcase>
|
|
7
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should have the new measure directory column" time="
|
|
7
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should have the new measure directory column" time="6.0e-05">
|
|
8
8
|
</testcase>
|
|
9
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should write a json" time="0.
|
|
9
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should write a json" time="0.062521">
|
|
10
10
|
</testcase>
|
|
11
11
|
<system-out>
|
|
12
12
|
{"spreadsheet_version"=>"0.2.0", "user_id"=>"new_user", "openstudio_server_version"=>"1.3.2", "cluster_name"=>"Analysis Cluster Name", "server_instance_type"=>"m2.2xlarge", "worker_instance_type"=>"cc2.8xlarge", "worker_nodes"=>2.0}
|
|
@@ -15,4 +15,54 @@ Creating JSON and ZIP file for Name goes here:medium_office
|
|
|
15
15
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ReduceLightingLoadsByPercentage to zip file
|
|
16
16
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
|
|
17
17
|
</system-out>
|
|
18
|
+
<system-err>
|
|
19
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
20
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
21
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
22
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
23
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
24
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
25
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
26
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
27
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
28
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
29
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
30
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
31
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
32
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
33
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
34
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
35
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
36
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
37
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
38
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
39
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
40
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
41
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
42
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
43
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
44
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
45
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
46
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
47
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
48
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
49
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
50
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
51
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
52
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
53
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
54
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
55
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
56
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
57
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
58
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
59
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
60
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
61
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
62
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
63
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
64
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
65
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
66
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
67
|
+
</system-err>
|
|
18
68
|
</testsuite>
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments" tests="2" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments should process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments" tests="2" time="0.755477" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:46-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments should process" time="0.563953">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments should error out with missing measure information" time="0.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments should error out with missing measure information" time="0.107427">
|
|
6
6
|
</testcase>
|
|
7
7
|
<system-out>
|
|
8
|
-
Creating JSON and ZIP file for Preflight:
|
|
8
|
+
Creating JSON and ZIP file for Preflight:9560f95b-5730-4038-a95b-328c825c596b
|
|
9
9
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
|
|
10
10
|
</system-out>
|
|
11
|
+
<system-err>
|
|
12
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
13
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
14
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
15
|
+
</system-err>
|
|
11
16
|
</testsuite>
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks" tests="2" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks should process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks" tests="2" time="0.768619" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:45-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks should process" time="0.604487">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks should error out with missing measure information" time="0.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks should error out with missing measure information" time="0.078092">
|
|
6
6
|
</testcase>
|
|
7
7
|
<system-out>
|
|
8
8
|
Creating JSON and ZIP file for Preflight:0_3_0_outputs
|
|
9
9
|
</system-out>
|
|
10
|
+
<system-err>
|
|
11
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
12
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
13
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
14
|
+
</system-err>
|
|
10
15
|
</testsuite>
|
data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-objective-functions.xml
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions" tests="4" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions" tests="4" time="0.798354" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:44-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should process" time="0.5865">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should have new setting variables" time="0.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should have new setting variables" time="0.000137">
|
|
6
6
|
</testcase>
|
|
7
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should have typed outputs" time="0.
|
|
7
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should have typed outputs" time="0.007012">
|
|
8
8
|
</testcase>
|
|
9
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should write a json" time="0.
|
|
9
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should write a json" time="0.121101">
|
|
10
10
|
</testcase>
|
|
11
11
|
<system-out>
|
|
12
12
|
{"spreadsheet_version"=>"0.3.0", "user_id"=>"new_user", "openstudio_server_version"=>"1.6.1", "cluster_name"=>"Preflight", "server_instance_type"=>"m3.xlarge", "worker_instance_type"=>"c3.2xlarge", "worker_nodes"=>1.0}
|
|
@@ -14,4 +14,12 @@
|
|
|
14
14
|
Creating JSON and ZIP file for Preflight:0_3_0_outputs
|
|
15
15
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
|
|
16
16
|
</system-out>
|
|
17
|
+
<system-err>
|
|
18
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
19
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
20
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
21
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
22
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
23
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
24
|
+
</system-err>
|
|
17
25
|
</testsuite>
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names" tests="2" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names should process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names" tests="2" time="0.801134" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:47-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names should process" time="0.607148">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names should process and save short display names" time="0.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names should process and save short display names" time="0.106234">
|
|
6
6
|
</testcase>
|
|
7
7
|
<system-out>
|
|
8
|
-
Creating JSON and ZIP file for Preflight:
|
|
8
|
+
Creating JSON and ZIP file for Preflight:276ccf51-ed22-4604-a380-8985cec5efe8
|
|
9
9
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
|
|
10
10
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
|
|
11
11
|
</system-out>
|
|
12
|
+
<system-err>
|
|
13
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
14
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
15
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
16
|
+
</system-err>
|
|
12
17
|
</testsuite>
|
data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-5-and-measure-paths.xml
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths" tests="2" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths should process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths" tests="2" time="0.804367" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:47-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths should process" time="0.609244">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths should save the analysis" time="0.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths should save the analysis" time="0.107273">
|
|
6
6
|
</testcase>
|
|
7
7
|
<system-out>
|
|
8
|
-
Creating JSON and ZIP file for Preflight:
|
|
8
|
+
Creating JSON and ZIP file for Preflight:c50f0062-cdfb-4dec-bc02-215f6c29af3c
|
|
9
9
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
|
|
10
10
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures_second_path/measure_in_another_dir to zip file
|
|
11
11
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
|
|
12
12
|
</system-out>
|
|
13
|
+
<system-err>
|
|
14
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
15
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
16
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
17
|
+
</system-err>
|
|
13
18
|
</testsuite>
|
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts" tests="1" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should fail to process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts" tests="1" time="0.862108" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:49-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should fail to process" time="0.775531">
|
|
4
4
|
</testcase>
|
|
5
|
+
<system-out>
|
|
6
|
+
Warning: 'overhangs_pf_south:construction' static value was empty or null, assuming optional and skipping
|
|
7
|
+
Warning: 'overhangs_pf_east:construction' static value was empty or null, assuming optional and skipping
|
|
8
|
+
Creating JSON and ZIP file for LHS Discrete and Continuous Variables:Discrete LHS Example
|
|
9
|
+
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/SetThermostatSchedules to zip file
|
|
10
|
+
</system-out>
|
|
11
|
+
<system-err>
|
|
12
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
13
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
14
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
15
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
16
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
17
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
18
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: normal_uncertain
|
|
19
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
20
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
21
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
|
|
22
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
23
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
24
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
25
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
26
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
27
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
28
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
29
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
30
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
31
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
32
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
33
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
|
|
34
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
35
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
36
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
37
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
38
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
39
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
|
|
40
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
41
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
42
|
+
</system-err>
|
|
5
43
|
</testsuite>
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts" tests="2" time="0.
|
|
3
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should process" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts" tests="2" time="0.823913" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:48-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should process" time="0.62217">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should save the analysis" time="0.
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should save the analysis" time="0.114058">
|
|
6
6
|
</testcase>
|
|
7
7
|
<system-out>
|
|
8
|
-
Creating JSON and ZIP file for Preflight:
|
|
8
|
+
Creating JSON and ZIP file for Preflight:639cb8a5-cdbb-4b69-955a-cbb650f6872b
|
|
9
9
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
|
|
10
10
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures_second_path/measure_in_another_dir to zip file
|
|
11
11
|
Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
|
|
12
12
|
</system-out>
|
|
13
|
+
<system-err>
|
|
14
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
15
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
16
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
17
|
+
</system-err>
|
|
13
18
|
</testsuite>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite name="OpenStudio::Analysis::Translator::Excel" tests="0" time="0.
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Translator::Excel" tests="0" time="0.003045" skipped="0" timestamp="2015-01-06T07:36:37-07:00">
|
|
3
3
|
</testsuite>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::Workflow" tests="6" time="0.007488" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:50-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::Workflow should create a workflow" time="0.000105">
|
|
4
|
+
</testcase>
|
|
5
|
+
<testcase name="OpenStudio::Analysis::Workflow should add a measure" time="0.004069">
|
|
6
|
+
</testcase>
|
|
7
|
+
<testcase name="OpenStudio::Analysis::Workflow should fix the path of the measure" time="0.000399">
|
|
8
|
+
</testcase>
|
|
9
|
+
<testcase name="OpenStudio::Analysis::Workflow should clear out a workflow" time="0.001168">
|
|
10
|
+
</testcase>
|
|
11
|
+
<testcase name="OpenStudio::Analysis::Workflow should find a workflow step" time="0.000599">
|
|
12
|
+
</testcase>
|
|
13
|
+
<testcase name="OpenStudio::Analysis::Workflow should find a workflow step and make a variable" time="0.000679">
|
|
14
|
+
</testcase>
|
|
15
|
+
<system-out>
|
|
16
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
17
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
18
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
19
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
20
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
21
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
22
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
23
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
24
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
25
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
26
|
+
loading config settings from /Users/nlong/.bcl/config.yml
|
|
27
|
+
</system-out>
|
|
28
|
+
<system-err>
|
|
29
|
+
measure.json not found in spec/files/measures/ActualMeasureNoJson, will parse measure file using BCL gem
|
|
30
|
+
</system-err>
|
|
31
|
+
</testsuite>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<testsuite name="OpenStudio::Analysis::WorkflowStep" tests="6" time="0.001731" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:50-07:00">
|
|
3
|
+
<testcase name="OpenStudio::Analysis::WorkflowStep should create a workflow" time="0.000165">
|
|
4
|
+
</testcase>
|
|
5
|
+
<testcase name="OpenStudio::Analysis::WorkflowStep should add a measure" time="0.000186">
|
|
6
|
+
</testcase>
|
|
7
|
+
<testcase name="OpenStudio::Analysis::WorkflowStep should tag a discrete variable" time="0.0002">
|
|
8
|
+
</testcase>
|
|
9
|
+
<testcase name="OpenStudio::Analysis::WorkflowStep should tag a continuous variable" time="0.000242">
|
|
10
|
+
</testcase>
|
|
11
|
+
<testcase name="OpenStudio::Analysis::WorkflowStep should tag a normal continuous variable" time="0.000227">
|
|
12
|
+
</testcase>
|
|
13
|
+
<testcase name="OpenStudio::Analysis::WorkflowStep should tag a uniform variable" time="0.000228">
|
|
14
|
+
</testcase>
|
|
15
|
+
<system-out>
|
|
16
|
+
#<OpenStudio::Analysis::WorkflowStep:0x007f955b0e5a68>
|
|
17
|
+
</system-out>
|
|
18
|
+
<system-err>
|
|
19
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
|
|
20
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
21
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
22
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: normal_uncertain
|
|
23
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
24
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
25
|
+
Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
|
|
26
|
+
Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
|
|
27
|
+
Deprecation Warning. workflow_step_type is no longer persisted
|
|
28
|
+
</system-err>
|
|
29
|
+
</testsuite>
|
data/spec/spec_helper.rb
CHANGED