Sha256: 0ca3c0f8677b912f1e68748624283434f6f5ce3a7755fb97f2984d9f0944a5ff
Contents?: true
Size: 759 Bytes
Versions: 8
Compression:
Stored size: 759 Bytes
Contents
class CBES # @!group Model # Determine which climate zone to use. # Uses the most specific climate zone set. def model_get_climate_zone_set_from_list(model, possible_climate_zone_sets) climate_zone_set = possible_climate_zone_sets.max return climate_zone_set end # Determines how ventilation for the standard is specified. # When 'Sum', all min OA flow rates are added up. Commonly used by 90.1. # When 'Maximum', only the biggest OA flow rate. Used by T24. # # @param model [OpenStudio::Model::Model] OpenStudio model object # @return [String] the ventilation method, either Sum or Maximum def model_ventilation_method(model) ventilation_method = 'Maximum' return ventilation_method end end
Version data entries
8 entries across 8 versions & 1 rubygems