| 989 | } |
| 990 | |
| 991 | bool AirLoopHVAC_Impl::multiAddBranchForZone(ThermalZone& thermalZone) { |
| 992 | boost::optional<HVACComponent> comp; |
| 993 | |
| 994 | auto thisloop = getObject<AirLoopHVAC>(); |
| 995 | auto splitter = thisloop.zoneSplitter(); |
| 996 | auto mixer = thisloop.zoneMixer(); |
| 997 | |
| 998 | auto result = addBranchForZoneImpl(thermalZone, thisloop, splitter, mixer, false, comp); |
| 999 | |
| 1000 | return result; |
| 1001 | } |
| 1002 | |
| 1003 | bool AirLoopHVAC_Impl::multiAddBranchForZone(ThermalZone& thermalZone, HVACComponent& airTerminal) { |
| 1004 | boost::optional<HVACComponent> comp = airTerminal; |