lib/from_openstudio/model.rb in honeybee-openstudio-2.31.8 vs lib/from_openstudio/model.rb in honeybee-openstudio-2.31.9
- old
+ new
@@ -49,10 +49,11 @@
# Hashes for various model properties
$schedules = {}
$opaque_constructions = {}
$window_constructions = {}
$shade_constructions = {}
+ $hvacs = []
hash[:properties] = properties_from_model(openstudio_model)
rooms = rooms_from_model(openstudio_model)
hash[:rooms] = rooms if !rooms.empty?
@@ -124,9 +125,10 @@
hash[:materials] = materials_from_model(openstudio_model)
hash[:construction_sets] = constructionsets_from_model(openstudio_model)
hash[:schedule_type_limits] = schedtypelimits_from_model(openstudio_model)
hash[:schedules] = schedules_from_model(openstudio_model)
hash[:program_types] = programtype_from_model(openstudio_model)
+ hash[:hvacs] = $hvacs
hash
end
def self.rooms_from_model(openstudio_model)