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

No Change in Zone Air Relative Humidity When Modifying Rated RH in AirChiller Object

asked 2025-07-07 14:46:43 -0500

Zakaria's avatar

updated 2025-07-07 15:16:41 -0500

Hello,

I am working on a modeling project in EnergyPlus for a refrigerated warehouse and I’m having trouble with the airchiller object used to model the evaporators. I’d really appreciate any insights or explanations from the community about this issue.

Context:

Here’s the setup I’m working with:

  • Object Used: AirChiller
  • Type: EuropeanSC3NominalWet
  • Rated Cooling Capacity: 70 kW
  • Cold Room Setpoint: -18°C ±1°C
  • Rated Evaporating Temperature: -25°C
  • Temperature Difference (DT1): 7 K
  • Infiltration/Interzone Exchange: None
  • Internal Loads: Only lighting and evaporators fan

Problem Description:

I’ve been experimenting with the AirChiller object by changing the rated relative humidity (RH) to observe its impact on the zone air RH. Initially, I set the rated RH to 95%, and the zone air RH fluctuated between 82% and 100%. When I changed the rated RH to 50%, I expected the zone air RH to approach this value, but I observed no change in the zone air RH, which still fluctuated between 82% and 100%.

Upon reviewing the EnergyPlus source code, I found that the zone RH is calculated as follows:

// Zone relative humidity (%)
Real64 ZoneRHPercent = Psychrometrics::PsyRhFnTdbWPb(state,
                                                     state.dataLoopNodes->Node(this->ZoneNodeNum).Temp,
                                                     state.dataLoopNodes->Node(this->ZoneNodeNum).HumRat,
                                                     state.dataEnvrn->OutBaroPress) * 100.0;

However, I couldn’t find where the rated RH input in the AirChiller object is used in the calculations. Can anyone explain why changing the rated RH has no effect on the zone air RH? Is there a specific setting or configuration I might be missing, or is the rated RH not directly linked to the zone RH in this model?

Any insights or suggestions would be greatly appreciated!

Thank you,

I’m using EnergyPlus 9.2 for co-simulation with MATLAB reasons, but these results are from standalone EnergyPlus runs.

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
1

answered 2025-07-08 05:39:38 -0500

Zakaria's avatar

updated 2025-07-08 08:49:02 -0500

Field: Rated Relative Humidity

This field is ONLY used if the Capacity Rating Type is CapacityTotalSpecificConditions and represents the relative humidity at rated conditions, expressed as a percent. The default is 85.

This explains why RH is the same when assign different value of the rated RH

edit flag offensive delete link more

Comments

@Zakaria be mindful that EnergyPlus documentation is unique for each version of EnergyPlus. You mentioned that you're using v9.2, but the documentation you linked to in your solution post is from v8.8.

Aaron Boranian's avatar Aaron Boranian  ( 2025-07-08 07:10:19 -0500 )edit

Your Answer

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

Add Answer

Training Workshops

Question Tools

1 follower

Stats

Asked: 2025-07-07 14:46:43 -0500

Seen: 116 times

Last updated: Jul 08