| 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>( |