Sha256: 3e572f254c2f9ac02348d01623c27518e9aaad30ec080c4d7bbde0aaeffb6e2a

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

require "openstudio-standards/version"

module OpenstudioStandards

  require 'json' # Used to load standards JSON files
  
  # HVAC sizing
  require 'openstudio-standards/hvac_sizing/HVACSizing.Model'

  # Prototype Inputs
  require_relative 'openstudio-standards/prototypes/Prototype.Model'
  require_relative 'openstudio-standards/prototypes/Prototype.utilities'
  require_relative 'openstudio-standards/prototypes/Prototype.add_objects'
  require_relative 'openstudio-standards/prototypes/Prototype.hvac_systems'
  
  # Weather data
  require_relative 'openstudio-standards/weather/Weather.Model'
  
  # HVAC standards
  require_relative 'openstudio-standards/standards/Standards.Model'
 
  # BTAP (Natural Resources Canada)
  require_relative 'openstudio-standards/btap/btap'
  
  # Utilities
  require_relative 'openstudio-standards/utilities/logging'
  require_relative 'openstudio-standards/utilities/simulation'
  require_relative 'openstudio-standards/utilities/hash'

  # Load the Openstudio Standards JSON
  # and assign to a constant.  This
  # should never be altered by the gem.
  $os_standards = load_openstudio_standards_json 
  
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
openstudio-standards-0.1.1 lib/openstudio-standards.rb
openstudio-standards-0.1.0 lib/openstudio-standards.rb