Fix Coil:Cooling:DX cannot mimic Coil:Cooling:DX:MultiSpeed PLF > 1 behavior#11448
Fix Coil:Cooling:DX cannot mimic Coil:Cooling:DX:MultiSpeed PLF > 1 behavior#11448joseph-robertson wants to merge 7 commits intodevelopfrom
Conversation
| OpModePower = thisspeed.fullLoadPower * speedRatio; | ||
| } else { | ||
| OpModePower = thisspeed.fullLoadPower * thisspeed.RTF; | ||
| } |
There was a problem hiding this comment.
So either multiply by PLR when NOT including startup losses or use RTF when including startup losses. That does seem correct. And only do this for speeds > 1 because at low speed the compressor will obviously cycle on and off. To save me some investigation time, why is line 424 different (i.e., doesn't check for speedNum)?
| @@ -24,6 +24,12 @@ See pull request [#11366](https://github.com/NatLabRockies/EnergyPlus/pull/11366 | |||
|
|
|||
| # Object Change: ObjectStartsWithC | |||
|
|
|||
| # Object Change: Coil:Cooling:DX:CurveFit:OperatingMode | |||
|
|
|||
| Insert new field A2 which is also TODO, "Apply Part Load Fraction to Speeds Greater than 1", defaulted to blank | |||
| \type choice | ||
| \key Yes | ||
| \key No | ||
| \default Yes |
There was a problem hiding this comment.
I was thinking that the default should be the same as the Multispeed object and the transition could insert Yes. What do you think?
Coil:Cooling:DX:MultiSpeed,
A9 , \field Apply Part Load Fraction to Speeds Greater than 1
\type choice
\key Yes
\key No
\default No
There was a problem hiding this comment.
I agree that No should be the default. And I personally think the transition should use the default (even though it will result in diffs), but I can see arguments for both sides.
There was a problem hiding this comment.
I would not have a problem with using the default of No.
Pull request overview
Coil:Cooling:DXcannot mimicCoil:Cooling:DX:MultiSpeedPLF > 1 behavior #11164Description of the purpose of this PR
Pull Request Author
Reviewer