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

Revision history [back]

The Supply Fan Operating Mode Schedule was added 20 days ago (Mid June) in this commit and is therefore only avaiable in OpenStudio 2.1.2 right now.

You could write an EnergyPlus measure to change the supply air fan operating mode schedule. See the Measure Writing Guide

Something along the lines of:

# Assuming you have created a ScheduleRuleset in OpenStudio model called "Res Common area(OA)"
sch = workspace.getObjectByTypeAndName("Schedule:Year".to_IddObjectType,"Res Common area(OA)").get
fcs = workspace.getObjectsByType("ZoneHVAC:FourPipeFanCoil".to_IddObjectType)
fcs.each do |fc|
  fc.setPointer(26, sch.handle)
end