-
Notifications
You must be signed in to change notification settings - Fork 222
V25.2.0-IOFreeze: new SizingZone and SizingSystem fields #5491
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
Conversation
|
CI Results for 862e86c:
|
jmarrec
left a comment
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.
Straigthforward enough, LGTM
| A13, \field Heating Coil Sizing Method | ||
| \note Size a heat pump heating coil using the Cooling, Heating or GreaterOfHeatingOrCooling capacities | ||
| \type choice | ||
| \key None | ||
| \key CoolingCapacity | ||
| \key HeatingCapacity | ||
| \key GreaterOfHeatingOrCooling | ||
| \required-field | ||
| N28; \field Maximum Heating Capacity To Cooling Capacity Sizing Ratio | ||
| \note The limit of heating coil capacity to cooling coil capacity | ||
| \type real | ||
| \units W/W | ||
| \minimum 1.0 | ||
| \required-field |
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.
default None and default 1 in E+ IDD.
Changed to required-field, I like it so far
| A14,\field Heating Coil Sizing Method | ||
| \type choice | ||
| \key None | ||
| \key CoolingCapacity | ||
| \key HeatingCapacity | ||
| \key GreaterOfHeatingOrCooling | ||
| \required-field | ||
| N27;\field Maximum Heating Capacity To Cooling Load Sizing Ratio | ||
| \type real | ||
| \units W/W | ||
| \minimum 1.0 | ||
| \required-field |
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.
ok, same exact thing
| // New E+ 25.2.0 fields, IDD defaults | ||
| setHeatingCoilSizingMethod("None"); | ||
| setMaximumHeatingCapacityToCoolingLoadSizingRatio(1.0); |
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.
Right, all good
| setHeatingCoilSizingMethod("None"); | ||
| setMaximumHeatingCapacityToCoolingCapacitySizingRatio(1.0); |
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.
Right, all good
| static std::vector<std::string> zoneLatentCoolingDesignSupplyAirHumidityRatioInputMethodValues(); | ||
| static std::vector<std::string> zoneLatentHeatingDesignSupplyAirHumidityRatioInputMethodValues(); | ||
| static std::vector<std::string> validSizingOptionValues(); | ||
| static std::vector<std::string> heatingCoilSizingMethodValues(); |
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.
yes.
|
|
||
| static std::vector<std::string> validSystemOutdoorAirMethodValues(); | ||
|
|
||
| static std::vector<std::string> heatingCoilSizingMethodValues(); |
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.
Ok
src/osversion/VersionTranslator.cpp
Outdated
| m_refactored.push_back(RefactoredObjectData(object, newObject)); | ||
| ss << newObject; | ||
|
|
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 stuff as I said on 4 PRs already, emplace_back + move, will fix it myself.
| // Heating Coil Sizing Method | ||
| s = modelObject.heatingCoilSizingMethod(); | ||
| if (s) { | ||
| idfObject.setString(Sizing_ZoneFields::HeatingCoilSizingMethod, s.get()); | ||
| } | ||
|
|
||
| // Maximum Heating Capacity To Cooling Load Sizing Ratio | ||
| value = modelObject.maximumHeatingCapacityToCoolingLoadSizingRatio(); | ||
| if (value) { | ||
| idfObject.setDouble(Sizing_ZoneFields::MaximumHeatingCapacityToCoolingLoadSizingRatio, value.get()); | ||
| } |
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.
neither are optional, and it's a waste to go through an optional, but at least this is consistent with the rest of the file. I've got enough stuff to do to not go and refactor the whole file right now.
862e86c to
d731b9e
Compare
Pull request overview
Pull Request Author
src/model/test)src/energyplus/Test)src/osversion/VersionTranslator.cpp)Labels:
IDDChangeAPIChangePull Request - Ready for CIso that CI builds your PRReview Checklist
This will not be exhaustively relevant to every PR.