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

Revision history [back]

click to hide/show revision 1
initial version

OK, looks like I triggered my question too soon.. It turns out, OpenStudio::Model::AirLoopHVAC is inheriting a lot of functionality from OpenStudio::Model::Loop. So after checking out the "manual" on that, I ended up doing the following:

outdoor_air_system.addToNode(air_loop_HVAC.supplyOutletNode()) cooling_coil.addToNode(air_loop_HVAC.supplyOutletNode()) heating_coil.addToNode(air_loop_HVAC.supplyOutletNode()) supply_air_fan.addToNode(air_loop_HVAC.supplyOutletNode())

It just adds these components in the order listed to the current supplyOutletNode. I have not figured out the SetpointManager yet, though.