| 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"); |