openstudio-standards 0.8.3 → 0.8.4

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.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/lib/openstudio-standards/btap/costing/README.md +502 -0
  3. data/lib/openstudio-standards/btap/costing/btap_costing.rb +473 -0
  4. data/lib/openstudio-standards/btap/costing/btap_measure_helper.rb +359 -0
  5. data/lib/openstudio-standards/btap/costing/btap_workflow.rb +117 -0
  6. data/lib/openstudio-standards/btap/costing/common_paths.rb +78 -0
  7. data/lib/openstudio-standards/btap/costing/common_resources/ConstructionProperties.csv +52 -0
  8. data/lib/openstudio-standards/btap/costing/common_resources/Constructions.csv +37 -0
  9. data/lib/openstudio-standards/btap/costing/common_resources/construction_sets.csv +1270 -0
  10. data/lib/openstudio-standards/btap/costing/common_resources/constructions_glazing.csv +61 -0
  11. data/lib/openstudio-standards/btap/costing/common_resources/constructions_opaque.csv +2256 -0
  12. data/lib/openstudio-standards/btap/costing/common_resources/costs.csv +1904 -0
  13. data/lib/openstudio-standards/btap/costing/common_resources/costs_local_factors.csv +2315 -0
  14. data/lib/openstudio-standards/btap/costing/common_resources/hvac_vent_ahu.csv +925 -0
  15. data/lib/openstudio-standards/btap/costing/common_resources/lighting.csv +364 -0
  16. data/lib/openstudio-standards/btap/costing/common_resources/lighting_sets.csv +2667 -0
  17. data/lib/openstudio-standards/btap/costing/common_resources/locations.csv +75 -0
  18. data/lib/openstudio-standards/btap/costing/common_resources/materials_glazing.csv +35 -0
  19. data/lib/openstudio-standards/btap/costing/common_resources/materials_hvac.csv +1699 -0
  20. data/lib/openstudio-standards/btap/costing/common_resources/materials_lighting.csv +267 -0
  21. data/lib/openstudio-standards/btap/costing/common_resources/materials_opaque.csv +164 -0
  22. data/lib/openstudio-standards/btap/costing/copy_test_results_files_to_expected_results.rb +11 -0
  23. data/lib/openstudio-standards/btap/costing/cost_building_from_file.rb +136 -0
  24. data/lib/openstudio-standards/btap/costing/costing_database_wrapper.rb +177 -0
  25. data/lib/openstudio-standards/btap/costing/daylighting_sensor_control_costing.rb +353 -0
  26. data/lib/openstudio-standards/btap/costing/dcv_costing.rb +314 -0
  27. data/lib/openstudio-standards/btap/costing/dummy.epw +8768 -0
  28. data/lib/openstudio-standards/btap/costing/dummy.osm +5320 -0
  29. data/lib/openstudio-standards/btap/costing/envelope_costing.rb +284 -0
  30. data/lib/openstudio-standards/btap/costing/heating_cooling_costing.rb +2584 -0
  31. data/lib/openstudio-standards/btap/costing/led_lighting_costing.rb +155 -0
  32. data/lib/openstudio-standards/btap/costing/lighting_costing.rb +209 -0
  33. data/lib/openstudio-standards/btap/costing/mech_sizing.json +502 -0
  34. data/lib/openstudio-standards/btap/costing/neb_end_use_prices.csv +42 -0
  35. data/lib/openstudio-standards/btap/costing/necb_2011_spacetype_info.csv +225 -0
  36. data/lib/openstudio-standards/btap/costing/necb_reference_runs.csv +28705 -0
  37. data/lib/openstudio-standards/btap/costing/nv_costing.rb +547 -0
  38. data/lib/openstudio-standards/btap/costing/parallel_tests.rb +92 -0
  39. data/lib/openstudio-standards/btap/costing/pv_ground_costing.rb +687 -0
  40. data/lib/openstudio-standards/btap/costing/shw_costing.rb +705 -0
  41. data/lib/openstudio-standards/btap/costing/test_list.txt +17 -0
  42. data/lib/openstudio-standards/btap/costing/test_run_all_test_locally.rb +26 -0
  43. data/lib/openstudio-standards/btap/costing/test_run_costing_tests.rb +80 -0
  44. data/lib/openstudio-standards/btap/costing/ventilation_costing.rb +2616 -0
  45. data/lib/openstudio-standards/constructions/modify.rb +2 -1
  46. data/lib/openstudio-standards/standards/Standards.Model.rb +39 -9
  47. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Model.rb +2 -2
  48. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/ashrae_90_1_prm.UserData.rb +6 -1
  49. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/btap_pre1980.rb +2 -27
  50. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_3_and_8_single_speed.rb +68 -27
  51. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_4.rb +64 -25
  52. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_6.rb +9 -14
  53. data/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +46 -20
  54. data/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +635 -248
  55. data/lib/openstudio-standards/standards/necb/NECB2011/data/constants.json +43 -7
  56. data/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json +7 -1
  57. data/lib/openstudio-standards/standards/necb/NECB2011/data/geometry/HighriseApartmentMult.osm +14272 -0
  58. data/lib/openstudio-standards/standards/necb/NECB2011/data/necb_2015_table_c1.json +1 -1
  59. data/lib/openstudio-standards/standards/necb/NECB2011/data/space_types.json +437 -437
  60. data/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json +516 -0
  61. data/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json +588 -0
  62. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +489 -0
  63. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +16 -6
  64. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb +48 -5
  65. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_multi_speed.rb +2 -2
  66. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb +35 -27
  67. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb +34 -23
  68. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +8 -6
  69. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +42 -13
  70. data/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +214 -25
  71. data/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +61 -1
  72. data/lib/openstudio-standards/standards/necb/NECB2015/data/space_types.json +636 -636
  73. data/lib/openstudio-standards/standards/necb/NECB2015/data/unitary_acs.json +38 -38
  74. data/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +15 -6
  75. data/lib/openstudio-standards/standards/necb/NECB2017/data/space_types.json +636 -636
  76. data/lib/openstudio-standards/standards/necb/NECB2020/data/chillers.json +71 -71
  77. data/lib/openstudio-standards/standards/necb/README.md +343 -0
  78. data/lib/openstudio-standards/standards/necb/common/btap_data.rb +190 -28
  79. data/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +14 -5
  80. data/lib/openstudio-standards/standards/necb/common/eccc_electric_grid_intensity_20250311.csv +14 -0
  81. data/lib/openstudio-standards/standards/necb/common/nir_gas_grid_intensity_20250311.csv +14 -0
  82. data/lib/openstudio-standards/standards/necb/common/system_types.yaml +0 -0
  83. data/lib/openstudio-standards/utilities/logging.rb +18 -14
  84. data/lib/openstudio-standards/version.rb +1 -1
  85. data/lib/openstudio-standards/weather/modify.rb +2 -2
  86. data/lib/openstudio-standards.rb +12 -0
  87. metadata +53 -2
@@ -99,34 +99,34 @@
99
99
  "units": "",
100
100
  "notes": ""
101
101
  },
102
- "historic_weather_file_list": {
102
+ "historic_weather_file_list_btap": {
103
103
  "data_type": "value",
104
104
  "refs": [
105
105
  "Defined"
106
106
  ],
107
107
  "value": "https://github.com/canmet-energy/btap_weather/raw/main/historic_weather_filenames.json",
108
108
  "units": "",
109
- "notes": "This is the url of the file containing the list of historic Canadian weather files in the canmet-eneryg/btap_weather GitHub repository."
109
+ "notes": "This is the url of the file containing the list of historic Canadian weather files on Climate.OneBuilding.Org."
110
110
  },
111
- "future_weather_file_list": {
111
+ "future_weather_file_list_btap": {
112
112
  "data_type": "value",
113
113
  "refs": [
114
114
  "Defined"
115
115
  ],
116
116
  "value": "https://github.com/canmet-energy/btap_weather/raw/main/future_weather_filenames.json",
117
117
  "units": "",
118
- "notes": "This is the url of the file containing the list of future Canadian weather files in the canmet-eneryg/btap_weather GitHub repository."
118
+ "notes": "This is the url of the file containing the list of future Canadian weather files on Climate.OneBuilding.Org."
119
119
  },
120
- "historic_weather_folder_url": {
120
+ "historic_weather_folder_url_btap": {
121
121
  "data_type": "value",
122
122
  "refs": [
123
123
  "Defined"
124
124
  ],
125
125
  "value": "https://github.com/canmet-energy/btap_weather/raw/main/historic/",
126
126
  "units": "",
127
- "notes": "This is the url of the folder containing the historic Canadian weather files in the canmet-eneryg/btap_weather GitHub repository."
127
+ "notes": "This is the url of the folder containing the historic Canadian weather files in the canmet-energy/btap_weather GitHub repository."
128
128
  },
129
- "future_weather_folder_url": {
129
+ "future_weather_folder_url_btap": {
130
130
  "data_type": "value",
131
131
  "refs": [
132
132
  "Defined"
@@ -134,6 +134,42 @@
134
134
  "value": "https://github.com/canmet-energy/btap_weather/raw/main/future/",
135
135
  "units": "",
136
136
  "notes": "This is the url of the folder containing the future Canadian weather files in the canmet-eneryg/btap_weather GitHub repository."
137
+ },
138
+ "historic_weather_file_list": {
139
+ "data_type": "value",
140
+ "refs": [
141
+ "Defined"
142
+ ],
143
+ "value": "https://raw.githubusercontent.com/canmet-energy/btap_batch/refs/heads/dev/resources/historic_weather_filenames.json",
144
+ "units": "",
145
+ "notes": "This is the url of the file containing the list of historic Canadian weather files in the canmet-energy/btap_weather GitHub repository."
146
+ },
147
+ "future_weather_file_list": {
148
+ "data_type": "value",
149
+ "refs": [
150
+ "Defined"
151
+ ],
152
+ "value": "https://raw.githubusercontent.com/canmet-energy/btap_batch/refs/heads/dev/resources/future_weather_filenames.json",
153
+ "units": "",
154
+ "notes": "This is the url of the file containing the list of future Canadian weather files on Climate.OneBuilding.Org."
155
+ },
156
+ "historic_weather_folder_url": {
157
+ "data_type": "value",
158
+ "refs": [
159
+ "Defined"
160
+ ],
161
+ "value": "https://climate.onebuilding.org/WMO_Region_4_North_and_Central_America/CAN_Canada/",
162
+ "units": "",
163
+ "notes": "This is the url of the folder containing the historic Canadian weather files on Climate.OneBuilding.Org."
164
+ },
165
+ "future_weather_folder_url": {
166
+ "data_type": "value",
167
+ "refs": [
168
+ "Defined"
169
+ ],
170
+ "value": "https://climate.onebuilding.org/WMO_Region_4_North_and_Central_America/CAN_Canada_Future/",
171
+ "units": "",
172
+ "notes": "This is the url of the folder containing the future Canadian weather files in the canmet-eneryg/btap_weather GitHub repository."
137
173
  }
138
174
  }
139
175
  }
@@ -18,6 +18,7 @@
18
18
  "mau_heating_coil_type": "Hot Water",
19
19
  "mau_cooling_type": "DX",
20
20
  "chiller_type": "",
21
+ "heating_coil_type_sys2": "Gas",
21
22
  "heating_coil_type_sys3": "Gas",
22
23
  "heating_coil_type_sys4": "Gas",
23
24
  "heating_coil_type_sys6": "Hot Water",
@@ -35,6 +36,7 @@
35
36
  "mau_heating_coil_type": "DX",
36
37
  "mau_cooling_type": "DX",
37
38
  "chiller_type": "",
39
+ "heating_coil_type_sys2": "DX",
38
40
  "heating_coil_type_sys3": "DX",
39
41
  "heating_coil_type_sys4": "DX",
40
42
  "heating_coil_type_sys6": "DX",
@@ -52,6 +54,7 @@
52
54
  "mau_heating_coil_type": "DX",
53
55
  "mau_cooling_type": "DX",
54
56
  "chiller_type": "",
57
+ "heating_coil_type_sys2": "DX",
55
58
  "heating_coil_type_sys3": "DX",
56
59
  "heating_coil_type_sys4": "DX",
57
60
  "heating_coil_type_sys6": "DX",
@@ -69,6 +72,7 @@
69
72
  "mau_heating_coil_type": "Electric",
70
73
  "mau_cooling_type": "DX",
71
74
  "chiller_type": "",
75
+ "heating_coil_type_sys2": "Electric",
72
76
  "heating_coil_type_sys3": "Electric",
73
77
  "heating_coil_type_sys4": "Electric",
74
78
  "heating_coil_type_sys6": "Electric",
@@ -87,6 +91,7 @@
87
91
  "mau_heating_coil_type": "DX",
88
92
  "mau_cooling_type": "DX",
89
93
  "chiller_type": "",
94
+ "heating_coil_type_sys2": "DX",
90
95
  "heating_coil_type_sys3": "DX",
91
96
  "heating_coil_type_sys4": "DX",
92
97
  "heating_coil_type_sys6": "DX",
@@ -104,6 +109,7 @@
104
109
  "mau_heating_coil_type": "DX",
105
110
  "mau_cooling_type": "DX",
106
111
  "chiller_type": "",
112
+ "heating_coil_type_sys2": "DX",
107
113
  "heating_coil_type_sys3": "DX",
108
114
  "heating_coil_type_sys4": "DX",
109
115
  "heating_coil_type_sys6": "DX",
@@ -120,6 +126,7 @@
120
126
  "mau_heating_coil_type": "Hot Water",
121
127
  "mau_cooling_type": "DX",
122
128
  "chiller_type": "",
129
+ "heating_coil_type_sys2": "Electric",
123
130
  "heating_coil_type_sys3": "Electric",
124
131
  "heating_coil_type_sys4": "Electric",
125
132
  "heating_coil_type_sys6": "Electric",
@@ -128,7 +135,6 @@
128
135
  "fan_type": "var_speed_drive",
129
136
  "swh_fueltype": "FuelOilNo2",
130
137
  "ecm_fueltype": "Electricity"
131
-
132
138
  }
133
139
  ]
134
140
  }