| 75 | } |
| 76 | |
| 77 | bool SizingSystem_Impl::isDesignOutdoorAirFlowRateAutosized() const { |
| 78 | bool result = false; |
| 79 | boost::optional<std::string> value = getString(OS_Sizing_SystemFields::DesignOutdoorAirFlowRate, true); |
| 80 | if (value) { |
| 81 | result = openstudio::istringEqual(value.get(), "Autosize"); |
| 82 | } |
| 83 | return result; |
| 84 | } |
| 85 | |
| 86 | boost::optional<double> SizingSystem_Impl::centralHeatingMaximumSystemAirFlowRatio() const { |
| 87 | return getDouble(OS_Sizing_SystemFields::CentralHeatingMaximumSystemAirFlowRatio, true); |