lib/openstudio-standards/standards/Standards.Model.rb in openstudio-standards-0.2.12.rc1 vs lib/openstudio-standards/standards/Standards.Model.rb in openstudio-standards-0.2.12.rc2
- old
+ new
@@ -67,11 +67,11 @@
end
end
# Add daylighting controls to each space
model.getSpaces.sort.each do |space|
- added = space_add_daylighting_controls(space, false, false, climate_zone)
+ added = space_add_daylighting_controls(space, false, false)
end
OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.Model', '*** Applying Baseline Constructions ***')
# Modify some of the construction types as necessary
@@ -1547,15 +1547,15 @@
OpenStudio.logFree(OpenStudio::Info, 'openstudio.model.Model', 'Finished applying HVAC efficiency standards.')
end
# Applies daylighting controls to each space in the model per the standard.
- def model_add_daylighting_controls(model, climate_zone)
+ def model_add_daylighting_controls(model)
OpenStudio.logFree(OpenStudio::Info, 'openstudio.model.Model', 'Started adding daylighting controls.')
# Add daylighting controls to each space
model.getSpaces.sort.each do |space|
- added = space_add_daylighting_controls(space, false, false, climate_zone)
+ added = space_add_daylighting_controls(space, false, false)
end
OpenStudio.logFree(OpenStudio::Info, 'openstudio.model.Model', 'Finished adding daylighting controls.')
end