Data Center Components - PDU
PDU enables you to create a fluid block, partitions, and vent geometry and boundary conditions to represent a power distribution unit.
|
Name |
The Name appears in the Project Manager window, history tree, and 3D Modeler window. |
| Location | Under Location, specify the x, y, and z start and length location to define the object's size. |
| PDU Flow Direction | PDU Flow Direction specifies the direction in which air flows. |
| PDU Specs | Under PDU Specs, specify the fluid material, heat output, and free area ratio of the inlet and outlet. |
Iron Python Script – PDU.py:
The following is the toolkit's scripting information.
oDesign.RunToolkit("SysLib", "Geometry/Data Center Components/PDU",
["ng","Name:PDU1","length_unit:meter","power_unit:W","FluidMaterial:air",
"xS:0","yS:0","zS:0","xL:0.9","yL:0.9","zL:0.9","FlowDirection:-X",
"HeatOutput:5000","InletAreaRatio:0.5","OutletAreaRatio:0.5"])
scriptInput = ["ng"]
scriptInput.append("Name:PDU1")
scriptInput.append("length_unit:meter")
scriptInput.append("xS:0.0")
scriptInput.append("yS:0.0")
scriptInput.append("zS:0.0")
scriptInput.append("xL:0.9")
scriptInput.append("yL:0.9")
scriptInput.append("zL:0.9")
scriptInput.append("FlowDirection:+Y")
scriptInput.append("FluidMaterial:air")
scriptInput.append("HeatOutput:5000")
scriptInput.append("power_unit:W")
scriptInput.append("InletAreaRatio:0.50")
scriptInput.append("OutletAreaRatio:0.50")
oDesign.RunToolkit("SysLib", "Geometry/Data Center Components/PDU", [])
oDesign.RunToolkit("SysLib", "Geometry/Data Center Components/PDU", ["ng"])
oDesign.RunToolkit("SysLib", "Geometry/Data Center Components/PDU", scriptInput)