Sha256: a27d6702a9aeb031ee4e03830d38faf598208c5cfb35ffbeff78c75611f00572
Contents?: true
Size: 617 Bytes
Versions: 3
Compression:
Stored size: 617 Bytes
Contents
# This class holds methods that apply ASHRAE 90.1-2016 # to a given model. # @ref [References::ASHRAE9012016] class ASHRAE9012016 < ASHRAE901 register_standard '90.1-2016' attr_reader :template def initialize super() @template = '90.1-2016' 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