Sha256: 28e66e3c36f215778285ad9822f6af9fc3db7c0accb27baac9cf487a2ea10c9f
Contents?: true
Size: 1021 Bytes
Versions: 6
Compression:
Stored size: 1021 Bytes
Contents
class ASHRAE901PRM < Standard # @!group BoilerHotWater # Applies the standard efficiency ratings to this object. # # @param boiler_hot_water [OpenStudio::Model::BoilerHotWater] hot water boiler object # @return [Boolean] returns true if successful, false if not def boiler_hot_water_apply_efficiency_and_curves(boiler_hot_water) # Get the minimum efficiency standards thermal_eff = boiler_hot_water_standard_minimum_thermal_efficiency(boiler_hot_water) # Set the efficiency values unless thermal_eff.nil? boiler_hot_water.setNominalThermalEfficiency(thermal_eff) end return true end # Determine what part load efficiency degredation curve should be used for a boiler # # @param boiler_hot_water [OpenStudio::Model::BoilerHotWater] hot water boiler object # @return [String] returns name of the boiler curve to be used, or nil if not applicable def boiler_get_eff_fplr(boiler_hot_water) return 'Boiler with Minimum Turndown' end end
Version data entries
6 entries across 6 versions & 1 rubygems