First time here? Check out the Help page!
1 | initial version |
Load your model using the ruby binding in a terminal or create a very simple measure in which you'll run this loop to remove all ZoneMixing objects
model.getZoneMixings.each do |mix|
mix.remove
end
2 | No.2 Revision |
Load your model using the ruby binding bindings in a terminal or create a very simple measure in which you'll run this loop to remove all ZoneMixing objects
model.getZoneMixings.each do |mix|
mix.remove
end
3 | No.3 Revision |
Load your model using the ruby bindings in a terminal (see Optional - Install Ruby section in the introductory tutorial) or create a very simple measure in which you'll run this loop to remove all ZoneMixing objects
model.getZoneMixings.each do |mix|
mix.remove
end