Revision history  [back]

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 or measure use the remove method.

# 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 or measure API/measure use the remove method.

# 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 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 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