How to solve these warnings regarding VRF HVAC?
I'm working with the OpenStudio Plugin to generate an IDF in order to use it as input in an EnergyPlus simulation.
I'm working with a 1-story building, with 5 rooms, a VRF System and 3 VRF Terminals.
After exporting the IDF, when I run the simulation I obtain these three warnings (all of them about the VRF System):
VRFCOOLCAPFT output is equal to 1.136 at rated conditions (instead of 1.0):
** Warning ** GetVRFInput: AirConditioner:VariableRefrigerantFlow="VRF SYSTEM" curve values * ~~~ ** ... Cooling Capacity Ratio Modifier Function of Low Temperature Curve Name = VRF SYSTEM VRFCOOLCAPFT 1 output is not equal to 1.0 (+ or - 10%) at rated conditions. ** ~~~ ** ... Curve output at rated conditions = 1.136
COOLINGEIRLOWPLR minimum value of X = 0.500 is out of range.
It must be <= Minimum Heat Pump Part-Load Ratio = 0.250.
** Warning ** GetVRFInput: AirConditioner:VariableRefrigerantFlow="VRF SYSTEM", invalid ** ~~~ ** ...Cooling Energy Input Ratio Modifier Function of Low Part-Load Ratio Curve Name = VRF SYSTEM COOLINGEIRLOWPLR 1 has out of range value. ** ~~~ ** ...Curve minimum value of X = 0.500 must be <= Minimum Heat Pump Part-Load Ratio = 0.250.
HEATINGEIRLOWPLR minimum value of X = 0.500 is out of range.
It must be <= Minimum Heat Pump Part-Load Ratio = 0.250.
** Warning ** GetVRFInput: AirConditioner:VariableRefrigerantFlow="VRF SYSTEM", invalid ** ~~~ ** ...Heating Energy Input Ratio Modifier Function of Low Part-Load Ratio Curve Name = VRF SYSTEM HEATINGEIRLOWPLR 1 has out of range value. ** ~~~ ** ...Curve minimum value of X = 0.500 must be <= Minimum Heat Pump Part-Load Ratio = 0.250.
So, finally, after the fatal error below (caused by the three warnings above):
** Fatal ** GetVRFInput: Errors found in getting AirConditioner:VariableRefrigerantFlow system input.
** Preceding condition(s) causes termination.
EnergyPlus terminates.
Is there anyone who could help me?
PS: If useful, I could attach here the IDF.
I had the same issue when modeling a VRF system. Issue 2 and 3 that you listed were preventing a successful simulation because the minimum value of x for the two OS::Curve:Cubic that define the Cooling and heating Energy Input Ratio Modifier Function for Low Part Load Ratio Curves was 0.5. This was out of the acceptable boundary. It had to be <= the minimum heat pump part load ratio, which was defined as 0.25 as default. I changed the minimum values for x for the two curves to match the heat pump part load ratio (0.25) and the simulation ran without any issues.
Hi Draza, thanks for your interest. I solved in your same manner, despite the fact I don't know if it's the best way to handle this warning. In other words, now the simulation is successfull, but I don't know if this work-around has any drawbacks. Anyway, thank you for your help!
PS: if you'll write your comment as an "answer", I could give you the upvote you deserve!
I didn't write it in the answer section because I am also unaware of any potential drawbacks to fixing the issue this way. I posted a similar question here but haven't heard back.
Okay, got it, it's a safer solution.