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

Availability Manager Night Ventilation

asked 2016-11-15 14:58:17 -0500

tmcdanie's avatar

updated 2017-08-28 16:14:21 -0500

Hello,

Where do I find and/or implement AvailabilityManager:NightVentilation that was released with Openstudio V1.9? I believe it is my solution to below:

I would like my AHU to provide conditioned mixed air during occupied hours. Overnight I would like to bring in unconditioned 100% outside air during a scheduled time (at a specific flowrate).

The trick seems to be getting only the AHU fan to run, without the central heating and cooling coils.

Thank you,

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
4

answered 2016-11-16 10:00:42 -0500

AvailabilityManager:NightVentilation isn't available through the GUI, so you'll have to add it via a Measure. Here's a code snippet that should get you started:

# Make a night ventilation availability manager and set inputs
night_vent = OpenStudio::Model::AvailabilityManagerNightVentilation.new(model)
night_vent.setApplicabilitySchedule(model.alwaysOnDiscreteSchedule)
night_vent.setVentilationTemperatureSchedule(some_schedule)
night_vent.setVentilationTemperatureDifference(OpenStudio.convert(5,'R','K').get) # Delta-F to Rankine
night_vent.setVentilationTemperatureLowLimit(OpenStudio.convert(55,'F','C').get) # F to C
night_vent.setNightVentingFlowFraction(0.5)
night_vent.setControlZone(some_zone)
night_vent.setNightVentingFlowFraction

# Attach it to the air loop
air_loop.setAvailabilityManager(night_vent)
edit flag offensive delete link more

Comments

Thank you.

Is there a schedule to incorporate more availability managers into the GUI?

tmcdanie's avatar tmcdanie  ( 2016-11-16 15:31:05 -0500 )edit

Your Answer

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

Add Answer

Careers

Question Tools

Stats

Asked: 2016-11-15 14:58:17 -0500

Seen: 211 times

Last updated: Nov 16 '16