Sha256: 718aa588c0e61e38dd791e0bb63ec3b58822787ae3d321f1d24ff2d64cfc98be
Contents?: true
Size: 745 Bytes
Versions: 15
Compression:
Stored size: 745 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] the model # @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
15 entries across 15 versions & 1 rubygems