MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / returnFan

Method returnFan

src/model/AirLoopHVAC.cpp:1444–1456  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers 1

TEST_FFunction · 0.80

Calls 2

lastFanFunction · 0.85
getMethod · 0.45

Tested by 1

TEST_FFunction · 0.64