| 1442 | } |
| 1443 | |
| 1444 | boost::optional<HVACComponent> AirLoopHVAC_Impl::returnFan() const { |
| 1445 | boost::optional<HVACComponent> result; |
| 1446 | |
| 1447 | auto start = supplyInletNode(); |
| 1448 | auto end = airLoopHVACOutdoorAirSystem(); |
| 1449 | |
| 1450 | if (end) { |
| 1451 | auto t_supplyComponents = supplyComponents(start, end.get()); |
| 1452 | result = lastFan(t_supplyComponents); |
| 1453 | } |
| 1454 | |
| 1455 | return result; |
| 1456 | } |
| 1457 | |
| 1458 | boost::optional<HVACComponent> AirLoopHVAC_Impl::reliefFan() const { |
| 1459 | boost::optional<HVACComponent> result; |