First time here? Check out the Help page!

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

Cooling minimum air flow fraction ?

asked 6 years ago

Siv's avatar

updated 6 years ago

Will the Sizing:Zone:Cooling Minimum Air Flow Fraction input still be used to set minimum air flow for VAV systems even if my Cooling Design Air Flow Method = DesignDay ?

if yes, what is the ideal value used in the industry ? How to set the minimum air flow fraction value ?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 6 years ago

The Sizing:Zone, Cooling Minimum Air Flow Fraction input is used in two places as far as I can tell. I doesn't matter which cooling air flow sizing method is used, if this field is entered then it is used here:

DesCoolVolFlowMin = max(DesCoolMinAirFlow,
                                       DesCoolMinAirFlow2,
                                       DesCoolVolFlow * thisTUFZSizing.DesCoolMinAirFlowFrac);

and here:

// set the zone minimum cooling supply air flow rate. This will be used for autosizing VAV terminal unit
// minimum flow rates (comment seems incorrect, really used as a minimum lower limit for the maximum air flow)
FinalZoneSizing(CtrlZoneNum).DesCoolVolFlowMin =
    max(FinalZoneSizing(CtrlZoneNum).DesCoolMinAirFlow,
           FinalZoneSizing(CtrlZoneNum).DesCoolMinAirFlow2,
           FinalZoneSizing(CtrlZoneNum).DesCoolVolFlow * `FinalZoneSizing(CtrlZoneNum).DesCoolMinAirFlowFrac`);

Don't worry too much about what this code does, more importantly that input is used to limit the cooling minimum flow rate during the sizing procedure.

Preview: (hide)
link

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

2 followers

Stats

Asked: 6 years ago

Seen: 279 times

Last updated: Oct 04 '18