openstudio-analysis 1.0.0.pat2 → 1.0.0.pre.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -1
  3. data/Gemfile +1 -1
  4. data/README.md +1 -1
  5. data/lib/openstudio/analysis/translator/datapoints.rb +57 -26
  6. data/lib/openstudio/analysis/translator/excel.rb +176 -160
  7. data/lib/openstudio/analysis/translator/workflow.rb +2 -1
  8. data/lib/openstudio/analysis/version.rb +1 -1
  9. data/lib/openstudio/analysis/workflow_step.rb +4 -1
  10. data/lib/openstudio/helpers/string.rb +10 -5
  11. data/openstudio-analysis.gemspec +2 -2
  12. data/spec/files/0_1_09_no_variables.xlsx +0 -0
  13. data/spec/files/0_1_09_outputvars.xlsx +0 -0
  14. data/spec/files/0_1_09_setup_version_2.xlsx +0 -0
  15. data/spec/files/0_1_09_small_list.xlsx +0 -0
  16. data/spec/files/0_1_09_small_list_incomplete.xlsx +0 -0
  17. data/spec/files/0_1_09_small_list_repeat_vars.xlsx +0 -0
  18. data/spec/files/0_1_09_small_list_validation_errors.xlsx +0 -0
  19. data/spec/files/0_1_10_proxy.xlsx +0 -0
  20. data/spec/files/0_1_10_proxy_user.xlsx +0 -0
  21. data/spec/files/0_1_10_template_input.xlsx +0 -0
  22. data/spec/files/0_1_11_discrete_variables.xlsx +0 -0
  23. data/spec/files/0_1_12_discrete_dynamic_columns.xlsx +0 -0
  24. data/spec/files/0_2_0_template.xlsx +0 -0
  25. data/spec/files/0_2_0_template_simpletest.xlsx +0 -0
  26. data/spec/files/0_3_0_dynamic_uuids.xlsx +0 -0
  27. data/spec/files/0_3_0_measure_existence.xlsx +0 -0
  28. data/spec/files/0_3_0_outputs.xlsx +0 -0
  29. data/spec/files/0_3_3_short_names.xlsx +0 -0
  30. data/spec/files/0_3_5_multiple_measure_paths.xlsx +0 -0
  31. data/spec/files/0_3_7_unique_measure_names.xlsx +0 -0
  32. data/spec/files/0_3_7_worker_init_final.xlsx +0 -0
  33. data/spec/files/0_4_0_lhs_discrete_continuous.xlsx +0 -0
  34. data/spec/files/0_4_0_multiple_seeds.xlsx +0 -0
  35. data/spec/files/0_4_0_pivot_test.xlsx +0 -0
  36. data/spec/files/workflow/datapoint_0.osd +60 -58
  37. data/spec/files/workflow/datapoint_1.osd +60 -58
  38. data/spec/files/workflow/datapoint_2.osd +60 -58
  39. data/spec/files/workflow/datapoint_wrong_osa_id.osd +62 -62
  40. data/spec/openstudio/excel_spec.rb +2 -8
  41. metadata +5 -5
@@ -81,7 +81,7 @@ module OpenStudio
81
81
  # @param argument_name [String] The instance_name of the measure argument that is to be tagged. This is the same name as the argument's variable in the measure.rb file.
82
82
  # @param variable_display_name [String] What the variable is called. It is best if the display name is self describing (i.e. does not need any other context). It can be the same as the argument display name.
83
83
  # @param distribution [Hash] Hash describing the distribution of the variable.
84
- # @option distribution [String] :type Type of distribution. `discrete`, `uniform`, `triangle`, `normal`, `lognormal`
84
+ # @option distribution [String] :type Type of distribution. `discrete`, `uniform`, `triangle`, `normal`, `lognormal`, `integer_sequence`
85
85
  # @option distribution [String] :units Units of the variable. This is legacy as previous OpenStudio measures did not specify units separately.
86
86
  # @option distribution [String] :minimum Minimum value of the distribution, required for all distributions
87
87
  # @option distribution [String] :maximum Maximum value of the distribution, required for all distributions
@@ -426,6 +426,9 @@ module OpenStudio
426
426
  fraction = 1 / d[:values].size.to_f
427
427
  d[:weights] = [fraction] * d[:values].size
428
428
  end
429
+ elsif d[:type] =~ /integer_sequence/
430
+ d[:weights] = 1
431
+ d[:values] = 1
429
432
  elsif d[:type] =~ /triangle/
430
433
  # requires min, max, mode
431
434
  elsif d[:type] =~ /normal/ # both normal and lognormal
@@ -31,12 +31,17 @@ def typecast_value(variable_type, value, inspect_string = false)
31
31
  when 'string', 'choice'
32
32
  out_value = inspect_string ? value.inspect : value.to_s
33
33
  when 'bool', 'boolean'
34
- if value.downcase == 'true'
35
- out_value = true
36
- elsif value.downcase == 'false'
37
- out_value = false
34
+ # Check if the value is already a boolean
35
+ if !!value == value
36
+ out_value = value
38
37
  else
39
- fail "Can't cast to a bool from a value of '#{value}' of class '#{value.class}'"
38
+ if value.downcase == 'true'
39
+ out_value = true
40
+ elsif value.downcase == 'false'
41
+ out_value = false
42
+ else
43
+ fail "Can't cast to a bool from a value of '#{value}' of class '#{value.class}'"
44
+ end
40
45
  end
41
46
  else
42
47
  fail "Unknown variable type of '#{@variable['type']}'"
@@ -24,8 +24,8 @@ Gem::Specification.new do |s|
24
24
 
25
25
  s.add_dependency 'faraday', '~> 0.8'
26
26
  s.add_dependency 'nokogiri', '~> 1.6'
27
- s.add_dependency 'roo', '~> 2.3'
28
- s.add_dependency 'rubyzip', '~> 1.2' # Should be at 1.0 because of jruby
27
+ s.add_dependency 'roo', '~> 2.4'
28
+ s.add_dependency 'rubyzip', '~> 1.2'
29
29
  s.add_dependency 'semantic', '~> 1.4'
30
30
  s.add_dependency 'bcl', '~> 0.5.5'
31
31
  s.add_dependency 'dencity', '~> 0.1.0'
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,63 +1,65 @@
1
1
  {
2
- "_id":"699e4f93-8b4c-4346-b245-8a80511e5024",
3
- "analysis_id":"b7cfff21-f518-426a-8d7d-e88425c2298b",
4
- "created_at":"2016-05-11T16:31:05Z",
5
- "download_information":null,
6
- "download_status":"na",
7
- "internal_ip_address":null,
8
- "ip_address":null,
9
- "name":"LHS Autogenerated 21",
10
- "openstudio_datapoint_file_name":null,
11
- "results":{
2
+ "data_point":{
3
+ "_id":"699e4f93-8b4c-4346-b245-8a80511e5024",
4
+ "analysis_id":"b7cfff21-f518-426a-8d7d-e88425c2298b",
5
+ "created_at":"2016-05-11T16:31:05Z",
6
+ "download_information":null,
7
+ "download_status":"na",
8
+ "internal_ip_address":null,
9
+ "ip_address":null,
10
+ "name":"LHS Autogenerated 21",
11
+ "openstudio_datapoint_file_name":null,
12
+ "results":{
12
13
 
13
- },
14
- "run_end_time":null,
15
- "run_start_time":null,
16
- "sdp_log_file":[
14
+ },
15
+ "run_end_time":null,
16
+ "run_start_time":null,
17
+ "sdp_log_file":[
17
18
 
18
- ],
19
- "set_variable_values":{
20
- "6d3a3479-42d4-4484-a7ce-45daae3169aa":0.3672873569559306,
21
- "10ea07d7-5b88-40a5-9267-e14cc9247fb8":1,
22
- "b8354218-68ea-40ac-813d-775b41002e59":-1,
23
- "a3b77357-c57f-4a63-a419-408fe57e41de":0,
24
- "ab729dec-e423-4d86-aede-eac087353251":0,
25
- "2765cc83-cc4a-4dfd-aaa1-04f04c472867":44,
26
- "b614f269-fef6-45ab-baf6-6e8741331a86":120,
27
- "eb8d1aad-2087-4163-977e-0978424de46e":13,
28
- "d1069c03-d2c4-4ade-aa9e-1b128a8af565":10,
29
- "bb3fbef6-5e8d-45a8-a314-e64e1a7990f9":0.4,
30
- "9dfaf70b-fb39-4598-94f5-572162e2b029":0.4
31
- },
32
- "status":"queued",
33
- "status_message":"",
34
- "updated_at":"2016-05-11T16:31:06Z",
35
- "uuid":"699e4f93-8b4c-4346-b245-8a80511e5024",
36
- "variable_values":null,
37
- "set_variable_values_names":{
38
- "add_overhangs_by_projection_factor.projection_factor":0.3672873569559306,
39
- "adjust_thermostat_setpoints_by_degrees.cooling_adjustment":1,
40
- "adjust_thermostat_setpoints_by_degrees.heating_adjustment":-1,
41
- "reduce_lighting_loads_by_percentage.lighting_power_reduction_percent":0,
42
- "rotate_building_relative_to_current_orientation.relative_building_rotation":0,
43
- "set_chilled_water_loop_temperature.cw_temp_f":44,
44
- "set_hot_water_loop_temperature.hw_temp_f":120,
45
- "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value.r_value":13,
46
- "set_r_value_of_insulation_for_roofs_to_a_specific_value.r_value":10,
47
- "window_to_wall_ratio_east.wwr":0.4,
48
- "window_to_wall_ratio_south.wwr":0.4
49
- },
50
- "set_variable_values_display_names":{
51
- "South Projection Factor":0.3672873569559306,
52
- "Degrees Fahrenheit to Adjust Cooling Setpoint By.":1,
53
- "Degrees Fahrenheit to Adjust heating Setpoint By.":-1,
54
- "LPD Reduction":0,
55
- "Rotation":0,
56
- "Desired chilled water setpoint (F)":44,
57
- "Desired hot water setpoint (F)":120,
58
- "Wall R-Value":13,
59
- "Roof R-Value":10,
60
- "East WWR":0.4,
61
- "South WWR":0.4
19
+ ],
20
+ "set_variable_values":{
21
+ "6d3a3479-42d4-4484-a7ce-45daae3169aa":0.3672873569559306,
22
+ "10ea07d7-5b88-40a5-9267-e14cc9247fb8":1,
23
+ "b8354218-68ea-40ac-813d-775b41002e59":-1,
24
+ "a3b77357-c57f-4a63-a419-408fe57e41de":0,
25
+ "ab729dec-e423-4d86-aede-eac087353251":0,
26
+ "2765cc83-cc4a-4dfd-aaa1-04f04c472867":44,
27
+ "b614f269-fef6-45ab-baf6-6e8741331a86":120,
28
+ "eb8d1aad-2087-4163-977e-0978424de46e":13,
29
+ "d1069c03-d2c4-4ade-aa9e-1b128a8af565":10,
30
+ "bb3fbef6-5e8d-45a8-a314-e64e1a7990f9":0.4,
31
+ "9dfaf70b-fb39-4598-94f5-572162e2b029":0.4
32
+ },
33
+ "status":"queued",
34
+ "status_message":"",
35
+ "updated_at":"2016-05-11T16:31:06Z",
36
+ "uuid":"699e4f93-8b4c-4346-b245-8a80511e5024",
37
+ "variable_values":null,
38
+ "set_variable_values_names":{
39
+ "add_overhangs_by_projection_factor.projection_factor":0.3672873569559306,
40
+ "adjust_thermostat_setpoints_by_degrees.cooling_adjustment":1,
41
+ "adjust_thermostat_setpoints_by_degrees.heating_adjustment":-1,
42
+ "reduce_lighting_loads_by_percentage.lighting_power_reduction_percent":0,
43
+ "rotate_building_relative_to_current_orientation.relative_building_rotation":0,
44
+ "set_chilled_water_loop_temperature.cw_temp_f":44,
45
+ "set_hot_water_loop_temperature.hw_temp_f":120,
46
+ "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value.r_value":13,
47
+ "set_r_value_of_insulation_for_roofs_to_a_specific_value.r_value":10,
48
+ "window_to_wall_ratio_east.wwr":0.4,
49
+ "window_to_wall_ratio_south.wwr":0.4
50
+ },
51
+ "set_variable_values_display_names":{
52
+ "South Projection Factor":0.3672873569559306,
53
+ "Degrees Fahrenheit to Adjust Cooling Setpoint By.":1,
54
+ "Degrees Fahrenheit to Adjust heating Setpoint By.":-1,
55
+ "LPD Reduction":0,
56
+ "Rotation":0,
57
+ "Desired chilled water setpoint (F)":44,
58
+ "Desired hot water setpoint (F)":120,
59
+ "Wall R-Value":13,
60
+ "Roof R-Value":10,
61
+ "East WWR":0.4,
62
+ "South WWR":0.4
63
+ }
62
64
  }
63
65
  }
@@ -1,63 +1,65 @@
1
1
  {
2
- "_id":"e4be14c2-aec0-4304-8b77-49250b7e97cd",
3
- "analysis_id":"b7cfff21-f518-426a-8d7d-e88425c2298b",
4
- "created_at":"2016-05-11T16:31:05Z",
5
- "download_information":null,
6
- "download_status":"na",
7
- "internal_ip_address":null,
8
- "ip_address":null,
9
- "name":"LHS Autogenerated 18",
10
- "openstudio_datapoint_file_name":null,
11
- "results":{
2
+ "data_point":{
3
+ "_id":"e4be14c2-aec0-4304-8b77-49250b7e97cd",
4
+ "analysis_id":"b7cfff21-f518-426a-8d7d-e88425c2298b",
5
+ "created_at":"2016-05-11T16:31:05Z",
6
+ "download_information":null,
7
+ "download_status":"na",
8
+ "internal_ip_address":null,
9
+ "ip_address":null,
10
+ "name":"LHS Autogenerated 18",
11
+ "openstudio_datapoint_file_name":null,
12
+ "results":{
12
13
 
13
- },
14
- "run_end_time":null,
15
- "run_start_time":null,
16
- "sdp_log_file":[
14
+ },
15
+ "run_end_time":null,
16
+ "run_start_time":null,
17
+ "sdp_log_file":[
17
18
 
18
- ],
19
- "set_variable_values":{
20
- "6d3a3479-42d4-4484-a7ce-45daae3169aa":0.15678702925331892,
21
- "10ea07d7-5b88-40a5-9267-e14cc9247fb8":1,
22
- "b8354218-68ea-40ac-813d-775b41002e59":-1,
23
- "a3b77357-c57f-4a63-a419-408fe57e41de":0,
24
- "ab729dec-e423-4d86-aede-eac087353251":0,
25
- "2765cc83-cc4a-4dfd-aaa1-04f04c472867":44,
26
- "b614f269-fef6-45ab-baf6-6e8741331a86":120,
27
- "eb8d1aad-2087-4163-977e-0978424de46e":13,
28
- "d1069c03-d2c4-4ade-aa9e-1b128a8af565":10,
29
- "bb3fbef6-5e8d-45a8-a314-e64e1a7990f9":0.4,
30
- "9dfaf70b-fb39-4598-94f5-572162e2b029":0.4
31
- },
32
- "status":"queued",
33
- "status_message":"",
34
- "updated_at":"2016-05-11T16:31:06Z",
35
- "uuid":"e4be14c2-aec0-4304-8b77-49250b7e97cd",
36
- "variable_values":null,
37
- "set_variable_values_names":{
38
- "add_overhangs_by_projection_factor.projection_factor":0.15678702925331892,
39
- "adjust_thermostat_setpoints_by_degrees.cooling_adjustment":1,
40
- "adjust_thermostat_setpoints_by_degrees.heating_adjustment":-1,
41
- "reduce_lighting_loads_by_percentage.lighting_power_reduction_percent":0,
42
- "rotate_building_relative_to_current_orientation.relative_building_rotation":0,
43
- "set_chilled_water_loop_temperature.cw_temp_f":44,
44
- "set_hot_water_loop_temperature.hw_temp_f":120,
45
- "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value.r_value":13,
46
- "set_r_value_of_insulation_for_roofs_to_a_specific_value.r_value":10,
47
- "window_to_wall_ratio_east.wwr":0.4,
48
- "window_to_wall_ratio_south.wwr":0.4
49
- },
50
- "set_variable_values_display_names":{
51
- "South Projection Factor":0.15678702925331892,
52
- "Degrees Fahrenheit to Adjust Cooling Setpoint By.":1,
53
- "Degrees Fahrenheit to Adjust heating Setpoint By.":-1,
54
- "LPD Reduction":0,
55
- "Rotation":0,
56
- "Desired chilled water setpoint (F)":44,
57
- "Desired hot water setpoint (F)":120,
58
- "Wall R-Value":13,
59
- "Roof R-Value":10,
60
- "East WWR":0.4,
61
- "South WWR":0.4
19
+ ],
20
+ "set_variable_values":{
21
+ "6d3a3479-42d4-4484-a7ce-45daae3169aa":0.15678702925331892,
22
+ "10ea07d7-5b88-40a5-9267-e14cc9247fb8":1,
23
+ "b8354218-68ea-40ac-813d-775b41002e59":-1,
24
+ "a3b77357-c57f-4a63-a419-408fe57e41de":0,
25
+ "ab729dec-e423-4d86-aede-eac087353251":0,
26
+ "2765cc83-cc4a-4dfd-aaa1-04f04c472867":44,
27
+ "b614f269-fef6-45ab-baf6-6e8741331a86":120,
28
+ "eb8d1aad-2087-4163-977e-0978424de46e":13,
29
+ "d1069c03-d2c4-4ade-aa9e-1b128a8af565":10,
30
+ "bb3fbef6-5e8d-45a8-a314-e64e1a7990f9":0.4,
31
+ "9dfaf70b-fb39-4598-94f5-572162e2b029":0.4
32
+ },
33
+ "status":"queued",
34
+ "status_message":"",
35
+ "updated_at":"2016-05-11T16:31:06Z",
36
+ "uuid":"e4be14c2-aec0-4304-8b77-49250b7e97cd",
37
+ "variable_values":null,
38
+ "set_variable_values_names":{
39
+ "add_overhangs_by_projection_factor.projection_factor":0.15678702925331892,
40
+ "adjust_thermostat_setpoints_by_degrees.cooling_adjustment":1,
41
+ "adjust_thermostat_setpoints_by_degrees.heating_adjustment":-1,
42
+ "reduce_lighting_loads_by_percentage.lighting_power_reduction_percent":0,
43
+ "rotate_building_relative_to_current_orientation.relative_building_rotation":0,
44
+ "set_chilled_water_loop_temperature.cw_temp_f":44,
45
+ "set_hot_water_loop_temperature.hw_temp_f":120,
46
+ "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value.r_value":13,
47
+ "set_r_value_of_insulation_for_roofs_to_a_specific_value.r_value":10,
48
+ "window_to_wall_ratio_east.wwr":0.4,
49
+ "window_to_wall_ratio_south.wwr":0.4
50
+ },
51
+ "set_variable_values_display_names":{
52
+ "South Projection Factor":0.15678702925331892,
53
+ "Degrees Fahrenheit to Adjust Cooling Setpoint By.":1,
54
+ "Degrees Fahrenheit to Adjust heating Setpoint By.":-1,
55
+ "LPD Reduction":0,
56
+ "Rotation":0,
57
+ "Desired chilled water setpoint (F)":44,
58
+ "Desired hot water setpoint (F)":120,
59
+ "Wall R-Value":13,
60
+ "Roof R-Value":10,
61
+ "East WWR":0.4,
62
+ "South WWR":0.4
63
+ }
62
64
  }
63
65
  }
@@ -1,63 +1,65 @@
1
1
  {
2
- "_id":"f4a016f6-fba8-422a-aa7a-5d1bf5136527",
3
- "analysis_id":"b7cfff21-f518-426a-8d7d-e88425c2298b",
4
- "created_at":"2016-05-11T16:31:05Z",
5
- "download_information":null,
6
- "download_status":"na",
7
- "internal_ip_address":null,
8
- "ip_address":null,
9
- "name":"LHS Autogenerated 10",
10
- "openstudio_datapoint_file_name":null,
11
- "results":{
2
+ "data_point":{
3
+ "_id":"f4a016f6-fba8-422a-aa7a-5d1bf5136527",
4
+ "analysis_id":"b7cfff21-f518-426a-8d7d-e88425c2298b",
5
+ "created_at":"2016-05-11T16:31:05Z",
6
+ "download_information":null,
7
+ "download_status":"na",
8
+ "internal_ip_address":null,
9
+ "ip_address":null,
10
+ "name":"LHS Autogenerated 10",
11
+ "openstudio_datapoint_file_name":null,
12
+ "results":{
12
13
 
13
- },
14
- "run_end_time":null,
15
- "run_start_time":null,
16
- "sdp_log_file":[
14
+ },
15
+ "run_end_time":null,
16
+ "run_start_time":null,
17
+ "sdp_log_file":[
17
18
 
18
- ],
19
- "set_variable_values":{
20
- "6d3a3479-42d4-4484-a7ce-45daae3169aa":0.055343150682747366,
21
- "10ea07d7-5b88-40a5-9267-e14cc9247fb8":1,
22
- "b8354218-68ea-40ac-813d-775b41002e59":-1,
23
- "a3b77357-c57f-4a63-a419-408fe57e41de":0,
24
- "ab729dec-e423-4d86-aede-eac087353251":0,
25
- "2765cc83-cc4a-4dfd-aaa1-04f04c472867":44,
26
- "b614f269-fef6-45ab-baf6-6e8741331a86":120,
27
- "eb8d1aad-2087-4163-977e-0978424de46e":13,
28
- "d1069c03-d2c4-4ade-aa9e-1b128a8af565":10,
29
- "bb3fbef6-5e8d-45a8-a314-e64e1a7990f9":0.4,
30
- "9dfaf70b-fb39-4598-94f5-572162e2b029":0.4
31
- },
32
- "status":"queued",
33
- "status_message":"",
34
- "updated_at":"2016-05-11T16:31:06Z",
35
- "uuid":"f4a016f6-fba8-422a-aa7a-5d1bf5136527",
36
- "variable_values":null,
37
- "set_variable_values_names":{
38
- "add_overhangs_by_projection_factor.projection_factor":0.055343150682747366,
39
- "adjust_thermostat_setpoints_by_degrees.cooling_adjustment":1,
40
- "adjust_thermostat_setpoints_by_degrees.heating_adjustment":-1,
41
- "reduce_lighting_loads_by_percentage.lighting_power_reduction_percent":0,
42
- "rotate_building_relative_to_current_orientation.relative_building_rotation":0,
43
- "set_chilled_water_loop_temperature.cw_temp_f":44,
44
- "set_hot_water_loop_temperature.hw_temp_f":120,
45
- "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value.r_value":13,
46
- "set_r_value_of_insulation_for_roofs_to_a_specific_value.r_value":10,
47
- "window_to_wall_ratio_east.wwr":0.4,
48
- "window_to_wall_ratio_south.wwr":0.4
49
- },
50
- "set_variable_values_display_names":{
51
- "South Projection Factor":0.055343150682747366,
52
- "Degrees Fahrenheit to Adjust Cooling Setpoint By.":1,
53
- "Degrees Fahrenheit to Adjust heating Setpoint By.":-1,
54
- "LPD Reduction":0,
55
- "Rotation":0,
56
- "Desired chilled water setpoint (F)":44,
57
- "Desired hot water setpoint (F)":120,
58
- "Wall R-Value":13,
59
- "Roof R-Value":10,
60
- "East WWR":0.4,
61
- "South WWR":0.4
19
+ ],
20
+ "set_variable_values":{
21
+ "6d3a3479-42d4-4484-a7ce-45daae3169aa":0.055343150682747366,
22
+ "10ea07d7-5b88-40a5-9267-e14cc9247fb8":1,
23
+ "b8354218-68ea-40ac-813d-775b41002e59":-1,
24
+ "a3b77357-c57f-4a63-a419-408fe57e41de":0,
25
+ "ab729dec-e423-4d86-aede-eac087353251":0,
26
+ "2765cc83-cc4a-4dfd-aaa1-04f04c472867":44,
27
+ "b614f269-fef6-45ab-baf6-6e8741331a86":120,
28
+ "eb8d1aad-2087-4163-977e-0978424de46e":13,
29
+ "d1069c03-d2c4-4ade-aa9e-1b128a8af565":10,
30
+ "bb3fbef6-5e8d-45a8-a314-e64e1a7990f9":0.4,
31
+ "9dfaf70b-fb39-4598-94f5-572162e2b029":0.4
32
+ },
33
+ "status":"queued",
34
+ "status_message":"",
35
+ "updated_at":"2016-05-11T16:31:06Z",
36
+ "uuid":"f4a016f6-fba8-422a-aa7a-5d1bf5136527",
37
+ "variable_values":null,
38
+ "set_variable_values_names":{
39
+ "add_overhangs_by_projection_factor.projection_factor":0.055343150682747366,
40
+ "adjust_thermostat_setpoints_by_degrees.cooling_adjustment":1,
41
+ "adjust_thermostat_setpoints_by_degrees.heating_adjustment":-1,
42
+ "reduce_lighting_loads_by_percentage.lighting_power_reduction_percent":0,
43
+ "rotate_building_relative_to_current_orientation.relative_building_rotation":0,
44
+ "set_chilled_water_loop_temperature.cw_temp_f":44,
45
+ "set_hot_water_loop_temperature.hw_temp_f":120,
46
+ "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value.r_value":13,
47
+ "set_r_value_of_insulation_for_roofs_to_a_specific_value.r_value":10,
48
+ "window_to_wall_ratio_east.wwr":0.4,
49
+ "window_to_wall_ratio_south.wwr":0.4
50
+ },
51
+ "set_variable_values_display_names":{
52
+ "South Projection Factor":0.055343150682747366,
53
+ "Degrees Fahrenheit to Adjust Cooling Setpoint By.":1,
54
+ "Degrees Fahrenheit to Adjust heating Setpoint By.":-1,
55
+ "LPD Reduction":0,
56
+ "Rotation":0,
57
+ "Desired chilled water setpoint (F)":44,
58
+ "Desired hot water setpoint (F)":120,
59
+ "Wall R-Value":13,
60
+ "Roof R-Value":10,
61
+ "East WWR":0.4,
62
+ "South WWR":0.4
63
+ }
62
64
  }
63
65
  }
@@ -1,65 +1,65 @@
1
- {"data_point":
2
- {
3
- "_id":"f4a046f6-fba8-422a-aa7a-5d1bf5136527",
4
- "analysis_id":"b7cfef21-f518-426a-8d7d-e88425c2298b",
5
- "created_at":"2016-05-11T16:31:05Z",
6
- "download_information":null,
7
- "download_status":"na",
8
- "internal_ip_address":null,
9
- "ip_address":null,
10
- "name":"LHS Autogenerated 10",
11
- "openstudio_datapoint_file_name":null,
12
- "results":{
1
+ {
2
+ "data_point":{
3
+ "_id":"f4a046f6-fba8-422a-aa7a-5d1bf5136527",
4
+ "analysis_id":"b7cfef21-f518-426a-8d7d-e88425c2298b",
5
+ "created_at":"2016-05-11T16:31:05Z",
6
+ "download_information":null,
7
+ "download_status":"na",
8
+ "internal_ip_address":null,
9
+ "ip_address":null,
10
+ "name":"LHS Autogenerated 10",
11
+ "openstudio_datapoint_file_name":null,
12
+ "results":{
13
13
 
14
- },
15
- "run_end_time":null,
16
- "run_start_time":null,
17
- "sdp_log_file":[
14
+ },
15
+ "run_end_time":null,
16
+ "run_start_time":null,
17
+ "sdp_log_file":[
18
18
 
19
- ],
20
- "set_variable_values":{
21
- "6d3a3479-42d4-4484-a7ce-45daae3169aa":0.055343150682747366,
22
- "10ea07d7-5b88-40a5-9267-e14cc9247fb8":1,
23
- "b8354218-68ea-40ac-813d-775b41002e59":-1,
24
- "a3b77357-c57f-4a63-a419-408fe57e41de":0,
25
- "ab729dec-e423-4d86-aede-eac087353251":0,
26
- "2765cc83-cc4a-4dfd-aaa1-04f04c472867":44,
27
- "b614f269-fef6-45ab-baf6-6e8741331a86":120,
28
- "eb8d1aad-2087-4163-977e-0978424de46e":13,
29
- "d1069c03-d2c4-4ade-aa9e-1b128a8af565":10,
30
- "bb3fbef6-5e8d-45a8-a314-e64e1a7990f9":0.4,
31
- "9dfaf70b-fb39-4598-94f5-572162e2b029":0.4
32
- },
33
- "status":"queued",
34
- "status_message":"",
35
- "updated_at":"2016-05-11T16:31:06Z",
36
- "uuid":"f4a016f6-fba8-422a-aa7a-5d1bf5136527",
37
- "variable_values":null,
38
- "set_variable_values_names":{
39
- "add_overhangs_by_projection_factor.projection_factor":0.055343150682747366,
40
- "adjust_thermostat_setpoints_by_degrees.cooling_adjustment":1,
41
- "adjust_thermostat_setpoints_by_degrees.heating_adjustment":-1,
42
- "reduce_lighting_loads_by_percentage.lighting_power_reduction_percent":0,
43
- "rotate_building_relative_to_current_orientation.relative_building_rotation":0,
44
- "set_chilled_water_loop_temperature.cw_temp_f":44,
45
- "set_hot_water_loop_temperature.hw_temp_f":120,
46
- "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value.r_value":13,
47
- "set_r_value_of_insulation_for_roofs_to_a_specific_value.r_value":10,
48
- "window_to_wall_ratio_east.wwr":0.4,
49
- "window_to_wall_ratio_south.wwr":0.4
50
- },
51
- "set_variable_values_display_names":{
52
- "South Projection Factor":0.055343150682747366,
53
- "Degrees Fahrenheit to Adjust Cooling Setpoint By.":1,
54
- "Degrees Fahrenheit to Adjust heating Setpoint By.":-1,
55
- "LPD Reduction":0,
56
- "Rotation":0,
57
- "Desired chilled water setpoint (F)":44,
58
- "Desired hot water setpoint (F)":120,
59
- "Wall R-Value":13,
60
- "Roof R-Value":10,
61
- "East WWR":0.4,
62
- "South WWR":0.4
63
- }
64
- }
19
+ ],
20
+ "set_variable_values":{
21
+ "6d3a3479-42d4-4484-a7ce-45daae3169aa":0.055343150682747366,
22
+ "10ea07d7-5b88-40a5-9267-e14cc9247fb8":1,
23
+ "b8354218-68ea-40ac-813d-775b41002e59":-1,
24
+ "a3b77357-c57f-4a63-a419-408fe57e41de":0,
25
+ "ab729dec-e423-4d86-aede-eac087353251":0,
26
+ "2765cc83-cc4a-4dfd-aaa1-04f04c472867":44,
27
+ "b614f269-fef6-45ab-baf6-6e8741331a86":120,
28
+ "eb8d1aad-2087-4163-977e-0978424de46e":13,
29
+ "d1069c03-d2c4-4ade-aa9e-1b128a8af565":10,
30
+ "bb3fbef6-5e8d-45a8-a314-e64e1a7990f9":0.4,
31
+ "9dfaf70b-fb39-4598-94f5-572162e2b029":0.4
32
+ },
33
+ "status":"queued",
34
+ "status_message":"",
35
+ "updated_at":"2016-05-11T16:31:06Z",
36
+ "uuid":"f4a016f6-fba8-422a-aa7a-5d1bf5136527",
37
+ "variable_values":null,
38
+ "set_variable_values_names":{
39
+ "add_overhangs_by_projection_factor.projection_factor":0.055343150682747366,
40
+ "adjust_thermostat_setpoints_by_degrees.cooling_adjustment":1,
41
+ "adjust_thermostat_setpoints_by_degrees.heating_adjustment":-1,
42
+ "reduce_lighting_loads_by_percentage.lighting_power_reduction_percent":0,
43
+ "rotate_building_relative_to_current_orientation.relative_building_rotation":0,
44
+ "set_chilled_water_loop_temperature.cw_temp_f":44,
45
+ "set_hot_water_loop_temperature.hw_temp_f":120,
46
+ "set_r_value_of_insulation_for_exterior_walls_to_a_specific_value.r_value":13,
47
+ "set_r_value_of_insulation_for_roofs_to_a_specific_value.r_value":10,
48
+ "window_to_wall_ratio_east.wwr":0.4,
49
+ "window_to_wall_ratio_south.wwr":0.4
50
+ },
51
+ "set_variable_values_display_names":{
52
+ "South Projection Factor":0.055343150682747366,
53
+ "Degrees Fahrenheit to Adjust Cooling Setpoint By.":1,
54
+ "Degrees Fahrenheit to Adjust heating Setpoint By.":-1,
55
+ "LPD Reduction":0,
56
+ "Rotation":0,
57
+ "Desired chilled water setpoint (F)":44,
58
+ "Desired hot water setpoint (F)":120,
59
+ "Wall R-Value":13,
60
+ "Roof R-Value":10,
61
+ "East WWR":0.4,
62
+ "South WWR":0.4
63
+ }
64
+ }
65
65
  }