First time here? Check out the Help page!
1 | initial version |
I'm not aware of a user script that does this but it would be pretty easy to add (see end of answer). However you can take a different approach to creation and assigning of zones.
With this approach there shouldn't be a need to delete any zones. If you want to write script to delete un-used zones would look something like this.
model.getThermalZones.each do |zone|
if zone.spaces.size == 0 then zone.remove end
# could add further check for non zero floor area and for more than 1 space surface
end