Sha256: 53d24222dc2beb2e5e2adbc981c645e9bc3ba66955f6da21d5d23d967da50a18
Contents?: true
Size: 615 Bytes
Versions: 6
Compression:
Stored size: 615 Bytes
Contents
class ASHRAE9012004 < ASHRAE901 # @!group Model # Determine which climate zone to use. # Uses the most specific climate zone set for most # climate zones, except for ClimateZone 3, which # uses the least specific climate zone. def model_get_climate_zone_set_from_list(model, possible_climate_zone_sets) climate_zone_set = if possible_climate_zone_sets.include? 'ClimateZone 3' possible_climate_zone_sets.max else possible_climate_zone_sets.min end return climate_zone_set end end
Version data entries
6 entries across 6 versions & 1 rubygems