-
Notifications
You must be signed in to change notification settings - Fork 209
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
Fix #5339 - Fixup Idd units m3/s -> gal/min #5346
Conversation
Temporarily changed the ruby script ```diff diff --git a/developer/ruby/FindAndAddMissingIPUnits.rb b/developer/ruby/FindAndAddMissingIPUnits.rb index ba4d846c89..0459f3bd1c 100644 --- a/developer/ruby/FindAndAddMissingIPUnits.rb +++ b/developer/ruby/FindAndAddMissingIPUnits.rb @@ -46,8 +46,8 @@ iddWrapper = oIddFile.get def apply_water_flow_rate(iddWrapper) puts "Looking for missing gal/min in Water Flow Rate fields" - include_words = ['water', 'flow', 'rate'] - exclude_words = ['ratio', 'fraction', 'curve', 'length', 'mass'] + include_words = ['flow', 'rate'] + exclude_words = ['air', 'ratio', 'fraction', 'curve', 'length', 'mass', ' per ', 'schedule', 'method'] n_missing = 0 ```
@@ -14552,6 +14554,7 @@ OS:HeatPump:AirToWater:FuelFired:Heating, | |||
\autosizable | |||
\minimum> 0 | |||
\units m3/s | |||
\ip-units gal/min |
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.
Field: Design Flow Rate
The volumetric design flow rate of the water side in [m3/s].
@@ -14737,6 +14740,7 @@ OS:HeatPump:AirToWater:FuelFired:Cooling, | |||
\autosizable | |||
\minimum> 0 | |||
\units m3/s | |||
\ip-units gal/min |
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.
same
@@ -17233,6 +17237,7 @@ OS:GroundHeatExchanger:HorizontalTrench, | |||
\required-field | |||
\type real | |||
\units m3/s | |||
\ip-units gal/min |
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.
Field: Design Flow Rate [m3/s]
This numeric field is the designed flow rate for this heat exchanger; the plant loop solver will attempt to meet this request based on flow and loop conditions.
@@ -31334,6 +31339,7 @@ OS:WaterHeater:Mixed, | |||
\note Not yet implemented | |||
\type real | |||
\units m3/s | |||
\ip-units gal/min |
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.
Being thorough:
Field: Heater Ignition Minimum Flow Rate
NOT YET IMPLEMENTED.
@@ -33921,6 +33927,7 @@ OS:SolarCollectorPerformance:FlatPlate, | |||
\type real | |||
\minimum> 0 | |||
\units m3/s | |||
\ip-units gal/min |
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.
Field: Test Flow Rate
The volumetric flow rate during testing [m3/s]. If the value is available as flow rate per unit area, it is recommended to multiply by the Gross Area of the collector module, not the net aperture area.
@@ -33979,6 +33986,7 @@ OS:SolarCollector:FlatPlate:Water, | |||
\type real | |||
\minimum> 0 | |||
\units m3/s | |||
\ip-units gal/min |
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.
Specific fix for the "Design Flow Rate" field of the SolarCollectorFlatPlate mentioned in #5339
@@ -34161,6 +34169,7 @@ OS:SolarCollector:IntegralCollectorStorage, | |||
\type real | |||
\minimum> 0 | |||
\units m3/s | |||
\ip-units gal/min |
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.
same for OS:SolarCollectorPerformance:IntegralCollectorStorage,
CI Results for 318d772:
|
Pull request overview
\ip-units gal/min
#5339Temporarily changed the ruby script
Pull Request Author
src/model/test
)src/energyplus/Test
)src/osversion/VersionTranslator.cpp
)Labels:
IDDChange
APIChange
Pull Request - Ready for CI
so that CI builds your PRReview Checklist
This will not be exhaustively relevant to every PR.