Autodesk.Revit.DB.Mechanical.WaterLoopType
是 Revit 中的一个机械类型,用于表示水流循环系统。
Autodesk.Revit.DB.Mechanical.WaterLoopType
包含以下属性:
Autodesk.Revit.DB.Mechanical.WaterLoopType
包含以下方法:
以下示例演示如何创建一个名为“WaterLoop1”的水流循环系统类型,其中使用水作为流体类型,双回路式循环系统,逆流流动配置,温度差为10摄氏度,最大流量为100升/分钟,压降为50千帕,泵扬程为10米。
// create a new water loop type
Autodesk.Revit.DB.Mechanical.WaterLoopType waterLoopType = new Autodesk.Revit.DB.Mechanical.WaterLoopType();
// set the name and description of the water loop type
waterLoopType.Name = "WaterLoop1";
waterLoopType.Description = "Water loop type with water as fluid, double loop system, counter flow, temperature difference of 10 degrees Celsius, maximum flow rate of 100 L/min, pressure drop of 50 kPa, and pump head of 10 meters.";
// set the fluid type, system type, flow configuration, temperature difference, maximum flow rate, pressure drop, and pump head of the water loop type
waterLoopType.FluidType = Autodesk.Revit.DB.Mechanical.FluidType.Water;
waterLoopType.SystemType = Autodesk.Revit.DB.Mechanical.SystemType.DoubleLoop;
waterLoopType.FlowConfiguration = Autodesk.Revit.DB.Mechanical.FlowConfiguration.CounterFlow;
waterLoopType.TemperatureDifference = 10;
waterLoopType.MaximumFlowRate = 100;
waterLoopType.PressureDrop = 50;
waterLoopType.PumpHead = 10;
Autodesk.Revit.DB.Mechanical.WaterLoopType
是一个表示水流循环系统的类型,包含流体类型、系统类型、流动配置、温度差、最大流量、压降和泵扬程等属性和方法。使用此类型可以创建自定义的水流循环系统类型,从而满足特定的设计需求。