Sha256: 88d547c25446857c31e8b3514a0365cdcf4e740c9d0a675a43d12ddb80ee323e
Contents?: true
Size: 592 Bytes
Versions: 16
Compression:
Stored size: 592 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 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
16 entries across 16 versions & 1 rubygems