The Autodesk.Revit.DB.Mechanical.ZoneEquipmentData
class represents the zone equipment data in a Revit model. This data contains information about the HVAC (heating, ventilation, and air conditioning) systems of a building's zones, such as the zone's equipment type, capacity, and airflow rate.
The following properties are available for the ZoneEquipmentData
class:
Zone
: Gets or sets the Zone
object that this ZoneEquipmentData
belongs to.EquipmentType
: Gets or sets the ZoneEquipmentType
enumeration value for the zone's equipment type.Capacity
: Gets or sets the cooling or heating capacity of the zone's equipment in watts.AirflowRate
: Gets or sets the airflow rate of the zone's equipment in cubic meters per second.AirOutput
: Gets or sets the AirOutputType
enumeration value for the zone's equipment air output.The ZoneEquipmentData
class does not have any methods.
The ZoneEquipmentData
class is used in Revit Mechanical systems to represent the HVAC equipment data for a specific zone. The properties of this class can be used to retrieve and modify the equipment data of a zone.
// Get the ZoneEquipmentData for a particular zone
ZoneEquipmentData zoneEquipmentData = zone.ZoneEquipmentData;
// Modify the equipment type and capacity of the zone
zoneEquipmentData.EquipmentType = ZoneEquipmentType.FanCoil;
zoneEquipmentData.Capacity = 10000;
// Commit the changes to the Revit model
doc.Modify(zoneEquipmentData);