Sha256: 15e601787bc34b5ff2b7cd36bd2fc11b04438bbf1036a891df8ff4d508fdfded

Contents?: true

Size: 506 Bytes

Versions: 1

Compression:

Stored size: 506 Bytes

Contents

# This class holds methods that apply a version of ASHRAE 90.1-2019 that has
# been modified to better reflect the U.S. building stock to a given model.
# @ref [References::ASHRAE9012019]
class ComStockASHRAE9012019 < ASHRAE9012019
  register_standard 'ComStock 90.1-2019'
  attr_reader :template

  def initialize
    @template = 'ComStock 90.1-2019'
    load_standards_database
  end

  def load_standards_database(data_directories = [])
    super([__dir__] + data_directories)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openstudio-standards-0.2.14 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/comstock_ashrae_90_1_2019.rb