First time here? Check out the Help page!
1 | initial version |
Your assessment is correct: if you add daylighting controls to an OpenStudio but do not include the Radiance Measure, the daylighting will be done using EnergyPlus' internal daylighting calculations.
So in order to do the analysis you want (daylighting vs. no daylighting), some options are:
model.getThermalZones.each do |zone|
zone.setFractionofZoneControlledbyPrimaryDaylightingControl(0)
zone.setFractionofZoneControlledbySecondaryDaylightingControl(0)
end
2 | No.2 Revision |
Your assessment is correct: if you add daylighting controls to an OpenStudio but do not include the Radiance Measure, the daylighting will be done using EnergyPlus' internal daylighting calculations.
So in order to do the analysis you want (daylighting vs. no daylighting), some options are:
`
model.getThermalZones.each do |zone|zone.setFractionofZoneControlledbyPrimaryDaylightingControl(0)zone.setFractionofZoneControlledbySecondaryDaylightingControl(0)end