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

Method isDesignFanPowerAutosized

src/model/CoolingTowerVariableSpeed.cpp:183–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181 }
182
183 bool CoolingTowerVariableSpeed_Impl::isDesignFanPowerAutosized() const {
184 bool result = false;
185 boost::optional<std::string> value = getString(OS_CoolingTower_VariableSpeedFields::DesignFanPower, true);
186 if (value) {
187 result = openstudio::istringEqual(value.get(), "autosize");
188 }
189 return result;
190 }
191
192 boost::optional<CurveCubic> CoolingTowerVariableSpeed_Impl::fanPowerRatioFunctionofAirFlowRateRatioCurve() const {
193 return getObject<ModelObject>().getModelObjectTarget<CurveCubic>(

Callers 2

TEST_FFunction · 0.80

Calls 2

istringEqualFunction · 0.85
getMethod · 0.45

Tested by 1

TEST_FFunction · 0.64