Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

To delete ZoneHVAC objects in the GUI:

  1. Click on the zone equipment name

  2. Click the black/white X in the upper right corner of the inspector pane under the Edit sub-tab

To delete ZoneHVAC objects in using the GUI:

  1. Click on the zone equipment name

  2. Click the black/white X in the upper right corner of the inspector pane under the Edit sub-tab

To delete objects using the API/measure use the remove method. For example, to delete all objects:

objs = model.getZoneHVACLowTempRadiantVarFlows

objs.each do |obj|

  obj.remove

end

To delete ZoneHVAC objects using the GUI:

  1. Click on the zone equipment name

  2. Click the black/white X in the upper right corner of the inspector pane under the Edit sub-tab

To delete objects using the API/measure use the remove method. For example, to delete all objects:

# delete all objects
objs = model.getZoneHVACLowTempRadiantVarFlows

objs.each do |obj|

  obj.remove

end

To delete ZoneHVAC objects using the GUI:

  1. Click on the zone equipment name

  2. Click the black/white X in the upper right corner of the inspector pane under the Edit sub-tab

To delete objects using the API/measure API or measure use the remove method.

# delete all objects
objs = model.getZoneHVACLowTempRadiantVarFlows

objs.each do |obj|

  obj.remove

end