Sha256: 042fcc2b6c7145e46d53f21004552182b6c177010e2045cf09ce2f08cf5a2e48
Contents?: true
Size: 781 Bytes
Versions: 16
Compression:
Stored size: 781 Bytes
Contents
# This class holds methods that apply the "standard" assumptions # used in the DOE 1980-2004 Reference Buildings, # but modified to better reflect the U.S. building stock to a given model. # @ref [References::USDOEReferenceBuildings] class ComStockDOERef1980to2004 < DOERef1980to2004 register_standard 'ComStock DOE Ref 1980-2004' attr_reader :template def initialize @template = 'ComStock DOE Ref 1980-2004' 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