Skip to content
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

Building Energy Standards Air Conditioner Data Update #1682

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from

Conversation

leijerry888
Copy link
Collaborator

Updates have been made to the Building Energy Standards Data repository, see here. This pull request was automatically generated.

@lymereJ lymereJ marked this pull request as draft February 9, 2024 05:20
@lymereJ lymereJ changed the title Building Energy Standards Data Update Building Energy Standards Air Conditioner Data Update Feb 9, 2024
Comment on lines +370 to +385
# Convert from IEER to COP (no fan)
#
# @note IEER is a weighted-average efficiency metrics at different load percentages, operataional and environemental conditions
# @note IEER should be modeled by using performance curves that match a targeted efficiency values
# @note This method estimates what a reasonable full load rated EER would be for a targeted IEER value
# @note The regression used in this method is based on a survey of over 1,000 rated AHRI units with IEER ranging from 11.8 to 25.6
# @todo Implement methods to handle IEER modeling
#
# @param ieer [Double] Energy Efficiency Ratio (EER)
# @return [Double] Coefficient of Performance (COP)
def ieer_to_cop_no_fan(ieer)
eer = 0.0183 * ieer * ieer - 0.4552 * ieer + 13.21

return eer_to_cop_no_fan(eer)
end

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New method to convert an IEER to a COP no fan. Note that this is just to estimate what would a reasonable full load gross COP would be for a specific IEER value. IEER-specific performance curves should then be applied. Copper could be used when it supports IEER rated equipment.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants