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

Method isMaximumFlowRateAutosized

src/model/FanOnOff.cpp:160–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158 }
159
160 bool FanOnOff_Impl::isMaximumFlowRateAutosized() const {
161 bool result = false;
162 boost::optional<std::string> value = getString(OS_Fan_OnOffFields::MaximumFlowRate, true);
163 if (value) {
164 result = openstudio::istringEqual(value.get(), "autosize");
165 }
166 return result;
167 }
168
169 double FanOnOff_Impl::motorEfficiency() const {
170 boost::optional<double> value = getDouble(OS_Fan_OnOffFields::MotorEfficiency, true);

Callers 8

translateAirSystemMethod · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45

Calls 2

istringEqualFunction · 0.85
getMethod · 0.45

Tested by 4

TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36