Sha256: d43d8e64fa438454ed652e161e67f386995d87e9cf339424fb560b9df008ee44
Contents?: true
Size: 605 Bytes
Versions: 3
Compression:
Stored size: 605 Bytes
Contents
# This abstract class holds methods that many versions of ASHRAE 90.1 share. # If a method in this class is redefined by a subclass, # the implementation in the subclass is used. # @abstract class ASHRAE901 < Standard def initialize super() load_standards_database end # Loads the openstudio standards dataset for this standard. # # @param data_directories [Array<String>] array of file paths that contain standards data # @return [Hash] a hash of standards data def load_standards_database(data_directories = []) super([__dir__] + data_directories) end end
Version data entries
3 entries across 3 versions & 1 rubygems