| 94 | } |
| 95 | |
| 96 | bool BoilerSteam_Impl::isNominalCapacityAutosized() const { |
| 97 | bool result = false; |
| 98 | boost::optional<std::string> value = getString(OS_Boiler_SteamFields::NominalCapacity, true); |
| 99 | if (value) { |
| 100 | result = openstudio::istringEqual(value.get(), "autosize"); |
| 101 | } |
| 102 | return result; |
| 103 | } |
| 104 | |
| 105 | boost::optional<double> BoilerSteam_Impl::minimumPartLoadRatio() const { |
| 106 | return getDouble(OS_Boiler_SteamFields::MinimumPartLoadRatio, true); |