-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1555 from NREL/fix/economizers
economizer implementation changes
- Loading branch information
Showing
33 changed files
with
5,427 additions
and
238 deletions.
There are no files selected for viewing
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
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
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
35 changes: 0 additions & 35 deletions
35
...nstudio-standards/prototypes/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.Model.rb
This file was deleted.
Oops, something went wrong.
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
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
32 changes: 32 additions & 0 deletions
32
...enstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirLoopHVAC.rb
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
26 changes: 26 additions & 0 deletions
26
..._90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/comstock_ashrae_90_1_2016.AirLoopHVAC.rb
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,26 @@ | ||
class ComStockASHRAE9012016 < ASHRAE9012016 | ||
# Determine the prototypical economizer type for the model. | ||
# Defaults to FixedDryBulb based on anecdotal evidence of this being | ||
# the most common type encountered in the field, combined | ||
# with this being the default option for many equipment manufacturers, | ||
# and being the strategy recommended in the 2010 ASHRAE journal article | ||
# "Economizer High Limit Devices and Why Enthalpy Economizers Don't Work" | ||
# by Steven Taylor and Hwakong Cheng. | ||
# https://tayloreng.egnyte.com/dl/mN0c9t4WSO/ASHRAE_Journal_-_Economizer_High_Limit_Devices_and_Why_Enthalpy_Economizers_Dont_Work.pdf_ | ||
# | ||
# @param model [OpenStudio::Model::Model] the model | ||
# @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' | ||
# @return [String] the economizer type. Possible values are: | ||
# 'NoEconomizer' | ||
# 'FixedDryBulb' | ||
# 'FixedEnthalpy' | ||
# 'DifferentialDryBulb' | ||
# 'DifferentialEnthalpy' | ||
# 'FixedDewPointAndDryBulb' | ||
# 'ElectronicEnthalpy' | ||
# 'DifferentialDryBulbAndEnthalpy' | ||
def model_economizer_type(model, climate_zone) | ||
economizer_type = 'FixedDryBulb' | ||
return economizer_type | ||
end | ||
end |
32 changes: 32 additions & 0 deletions
32
...enstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirLoopHVAC.rb
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
26 changes: 26 additions & 0 deletions
26
..._90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/comstock_ashrae_90_1_2019.AirLoopHVAC.rb
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,26 @@ | ||
class ComStockASHRAE9012019 < ASHRAE9012019 | ||
# Determine the prototypical economizer type for the model. | ||
# Defaults to FixedDryBulb based on anecdotal evidence of this being | ||
# the most common type encountered in the field, combined | ||
# with this being the default option for many equipment manufacturers, | ||
# and being the strategy recommended in the 2010 ASHRAE journal article | ||
# "Economizer High Limit Devices and Why Enthalpy Economizers Don't Work" | ||
# by Steven Taylor and Hwakong Cheng. | ||
# https://tayloreng.egnyte.com/dl/mN0c9t4WSO/ASHRAE_Journal_-_Economizer_High_Limit_Devices_and_Why_Enthalpy_Economizers_Dont_Work.pdf_ | ||
# | ||
# @param model [OpenStudio::Model::Model] the model | ||
# @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' | ||
# @return [String] the economizer type. Possible values are: | ||
# 'NoEconomizer' | ||
# 'FixedDryBulb' | ||
# 'FixedEnthalpy' | ||
# 'DifferentialDryBulb' | ||
# 'DifferentialEnthalpy' | ||
# 'FixedDewPointAndDryBulb' | ||
# 'ElectronicEnthalpy' | ||
# 'DifferentialDryBulbAndEnthalpy' | ||
def model_economizer_type(model, climate_zone) | ||
economizer_type = 'FixedDryBulb' | ||
return economizer_type | ||
end | ||
end |
Oops, something went wrong.