-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Standard Data Release YAML to GitHub Actions #1329
base: develop
Are you sure you want to change the base?
Changes from all commits
32f3e32
17a07fc
b7ca9f9
416ea9a
eb3be90
d043d64
b029136
4edd694
dbe9237
4c9ed32
8628fd9
1234f76
851e4bf
f22c262
122df88
32f78ed
fe36207
b859e80
3eec898
5613ee5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,3 +36,18 @@ Development Changelog | |
resstock-estimation: `pull request 436 <https://github.com/NREL/resstock-estimation/pull/436>`_ | ||
|
||
Assignees: Janet Reyna | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Outside of scope of this PR, but this heat pump pool heaters entry is missing a |
||
|
||
.. change:: | ||
:tags: workflow, standard data release | ||
:pullreq: 1329 | ||
:tickets: 1261 | ||
|
||
**Date**: 2024-1-9 | ||
|
||
Title: | ||
Add Standard Data Release YAML to Integration Tests | ||
|
||
Description: | ||
Add an initial Standard Data Release (SDR) YAML file. Add the SDR upgrade file into integration tests to continue progress towards end-to-end testing. | ||
|
||
Assignees: Anthony Fontanini |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40097,6 +40097,12 @@ Arguments | |
- Double | ||
- | ||
- The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. | ||
* - ``heating_system_2_fraction_heat_load_served`` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This argument is being added here under "HVAC Secondary Heating Efficiency" because you've added new "Fuel Wall/Floor Furnace" options which assign |
||
- true | ||
- Frac | ||
- Double | ||
- | ||
- The heat load served fraction of the second heating system. Ignored if this heating system serves as a backup system for a heat pump. | ||
* - ``heating_system_2_has_flue_or_chimney`` | ||
- true | ||
- | ||
|
@@ -40120,6 +40126,7 @@ From ``project_national`` the list of options, option stock sturation, and optio | |
- ``heating_system_2_heating_efficiency`` | ||
- ``heating_system_2_heating_capacity`` | ||
- ``heating_system_2_heating_autosizing_limit`` | ||
- ``heating_system_2_fraction_heat_load_served`` | ||
- ``heating_system_2_has_flue_or_chimney`` | ||
|
||
* - Fuel Boiler, 76% AFUE | ||
|
@@ -40128,62 +40135,71 @@ From ``project_national`` the list of options, option stock sturation, and optio | |
- 0.76 | ||
- auto | ||
- auto | ||
- | ||
- auto | ||
* - Fuel Boiler, 80% AFUE | ||
- 0.014% | ||
- Boiler | ||
- 0.8 | ||
- auto | ||
- auto | ||
- | ||
- auto | ||
* - Fuel Boiler, 90% AFUE | ||
- 0.0024% | ||
- Boiler | ||
- 0.90 | ||
- auto | ||
- auto | ||
- | ||
- auto | ||
* - Fuel Furnace, 60% AFUE | ||
- 3.9e-05% | ||
- Furnace | ||
- 0.6 | ||
- auto | ||
- auto | ||
- | ||
- auto | ||
* - Fuel Furnace, 76% AFUE | ||
- 0.00052% | ||
- Furnace | ||
- 0.76 | ||
- auto | ||
- auto | ||
- | ||
- auto | ||
* - Fuel Furnace, 80% AFUE | ||
- 0.0015% | ||
- Furnace | ||
- 0.8 | ||
- auto | ||
- auto | ||
- | ||
- auto | ||
* - Fuel Furnace, 92.5% AFUE | ||
- 0.00082% | ||
- Furnace | ||
- 0.925 | ||
- auto | ||
- auto | ||
- | ||
- auto | ||
* - None | ||
- 1e+02% | ||
- none | ||
- 0 | ||
- auto | ||
- auto | ||
- | ||
- auto | ||
* - Shared Heating | ||
- 0.0017% | ||
- none | ||
- 0 | ||
- auto | ||
- auto | ||
- | ||
- auto | ||
* - Void | ||
- 0% | ||
|
@@ -40192,6 +40208,7 @@ From ``project_national`` the list of options, option stock sturation, and optio | |
- | ||
- | ||
- | ||
- | ||
|
||
.. _hvac_secondary_heating_fuel: | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the old upgrade yml files, "17" referred to the final "Package Upgrade" upgrade scenario. I believe the thinking here was that the simulation output would be the most comprehensive for testing purposes. I'm not sure that the final "16" has the same significance here for the new yml file.
Also, you may want to avoid hardcoding "16" here if the new yml will expand over time.