Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
2

VRF performance curve: EIR boundary temperature

asked 6 years ago

Bárbara Torregrosa's avatar

I tried a simple case of VRF system with EnergyPlus v9.0. I reported the outputs "Performance Curve Input /Output Value" for the VRF model performance curve called "Cooling Energy Input Ratio Boundary Curve", which gave me a result of -999. However, the rest of the cooling curves have good values. In fact, the selection between the low and high cooling EIR curve seems to be following the boundary temperature curve for cooling capacity, not for EIR.

Can anyone confirm if this is a bug or correct me if I am wrong, please?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 6 years ago

It appears your assessment is correct. The VRF model looks only at the cooling capacity boundary curve to calculate both the capacity and EIR modifiers. The code below shows the issue. This needs to be split out to test each boundary curve individually.

// recalculate cooling Cap and EIR curve output if using boundary curve along with dual Cap and EIR curves.
if (VRF(VRFCond).CoolBoundaryCurvePtr > 0) {
    CoolOABoundary = CurveValue(VRF(VRFCond).CoolBoundaryCurvePtr, InletAirWetBulbC);
    if (OutdoorDryBulb > CoolOABoundary) {
        if (VRF(VRFCond).CoolCapFTHi > 0) TotCoolCapTempModFac = CurveValue(VRF(VRFCond).CoolCapFTHi, InletAirWetBulbC, CondInletTemp);
        if (VRF(VRFCond).CoolEIRFTHi > 0) TotCoolEIRTempModFac = CurveValue(VRF(VRFCond).CoolEIRFTHi, InletAirWetBulbC, CondInletTemp);
    }
}
Preview: (hide)
link

Comments

Issue #7127 opened on GitHub here

rraustad's avatar rraustad  ( 6 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Training Workshops

Careers

Question Tools

Stats

Asked: 6 years ago

Seen: 221 times

Last updated: Jan 14 '19