-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/pnnl/building-energy-sta…
…ndards-data into IECC_heatreject
- Loading branch information
Showing
3 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
79 changes: 79 additions & 0 deletions
79
...nergy_standards_data/database_files/hvac_minimum_requirement_heat_rejection_90_1_prm.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
[ | ||
{ | ||
"template": "90.1-PRM-2004", | ||
"equipment_type": "Open Cooling Tower", | ||
"fan_type": "Propeller or Axial", | ||
"test_fluid": null, | ||
"start_date": "9/9/1919", | ||
"end_date": "9/9/2999", | ||
"minimum_performance_gpm_per_hp": 38.2, | ||
"minimum_performance_btu_per_hr_per_hp": null, | ||
"annotation": "From 90.1-2004 Section G3.1.3.11 and Table 6.8.1G" | ||
}, | ||
{ | ||
"template": "90.1-PRM-2007", | ||
"equipment_type": "Open Cooling Tower", | ||
"fan_type": "Propeller or Axial", | ||
"test_fluid": null, | ||
"start_date": "9/9/1919", | ||
"end_date": "9/9/2999", | ||
"minimum_performance_gpm_per_hp": 38.2, | ||
"minimum_performance_btu_per_hr_per_hp": null, | ||
"annotation": "From 90.1-2007 Section G3.1.3.11 and Table 6.8.1G" | ||
}, | ||
{ | ||
"template": "90.1-PRM-2010", | ||
"equipment_type": "Open Cooling Tower", | ||
"fan_type": "Propeller or Axial", | ||
"test_fluid": null, | ||
"start_date": "9/9/1919", | ||
"end_date": "9/9/2999", | ||
"minimum_performance_gpm_per_hp": 38.2, | ||
"minimum_performance_btu_per_hr_per_hp": null, | ||
"annotation": "From 90.1-2010 Section G3.1.3.11 and Table 6.8.1G" | ||
}, | ||
{ | ||
"template": "90.1-PRM-2013", | ||
"equipment_type": "Open Cooling Tower", | ||
"fan_type": "Propeller or Axial", | ||
"test_fluid": null, | ||
"start_date": "9/9/1919", | ||
"end_date": "9/9/2999", | ||
"minimum_performance_gpm_per_hp": 40.2, | ||
"minimum_performance_btu_per_hr_per_hp": null, | ||
"annotation": "From 90.1-2013 Section G3.1.3.11 and Table 6.8.1-7" | ||
}, | ||
{ | ||
"template": "90.1-PRM-2016", | ||
"equipment_type": "Open Cooling Tower", | ||
"fan_type": "Propeller or Axial", | ||
"test_fluid": null, | ||
"start_date": "9/9/1919", | ||
"end_date": "9/9/2999", | ||
"minimum_performance_gpm_per_hp": 38.2, | ||
"minimum_performance_btu_per_hr_per_hp": null, | ||
"annotation": "From 90.1-2016 Section G3.1.3.11" | ||
}, | ||
{ | ||
"template": "90.1-PRM-2019", | ||
"equipment_type": "Open Cooling Tower", | ||
"fan_type": "Propeller or Axial", | ||
"test_fluid": null, | ||
"start_date": "9/9/1919", | ||
"end_date": "9/9/2999", | ||
"minimum_performance_gpm_per_hp": 38.2, | ||
"minimum_performance_btu_per_hr_per_hp": null, | ||
"annotation": "From 90.1-2019 Section G3.1.3.11" | ||
}, | ||
{ | ||
"template": "90.1-PRM-2022", | ||
"equipment_type": "Open Cooling Tower", | ||
"fan_type": "Propeller or Axial", | ||
"test_fluid": null, | ||
"start_date": "9/9/1919", | ||
"end_date": "9/9/2999", | ||
"minimum_performance_gpm_per_hp": 38.2, | ||
"minimum_performance_btu_per_hr_per_hp": null, | ||
"annotation": "From 90.1-2022 Section G3.2.3.11" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...energy_standards_data/database_tables/hvac_minimum_requirement_heat_rejection_90_1_prm.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import sqlite3 | ||
|
||
from building_energy_standards_data.database_tables.hvac_minimum_requirement_heat_rejection import ( | ||
HVACMinimumRequirementHeatRejection, | ||
) | ||
|
||
TABLE_NAME = "hvac_minimum_requirement_heat_rejection_90_1_prm" | ||
|
||
|
||
class HVACMinimumRequirementHeatRejection901PRMTable( | ||
HVACMinimumRequirementHeatRejection | ||
): | ||
def __init__(self): | ||
super(HVACMinimumRequirementHeatRejection901PRMTable, self).__init__( | ||
table_name=TABLE_NAME, | ||
initial_data_directory=f"building_energy_standards_data/database_files/{TABLE_NAME}", | ||
) |