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

Method isDesignMaximumAirFlowRateAutosized

src/model/FanSystemModel.cpp:181–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

179 }
180
181 bool FanSystemModel_Impl::isDesignMaximumAirFlowRateAutosized() const {
182 bool result = false;
183 boost::optional<std::string> value = getString(OS_Fan_SystemModelFields::DesignMaximumAirFlowRate, true);
184 if (value) {
185 result = openstudio::istringEqual(value.get(), "autosize");
186 }
187 return result;
188 }
189
190 boost::optional<double> FanSystemModel_Impl::autosizedDesignMaximumAirFlowRate() {
191 return getAutosizedValue("Design Size Design Maximum Air Flow Rate", "m3/s");

Callers 3

TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80

Calls 2

istringEqualFunction · 0.85
getMethod · 0.45

Tested by 3

TEST_FFunction · 0.64
TEST_FFunction · 0.64
TEST_FFunction · 0.64