This function computes the Geometric Mean Radius (GMR) of a cable.
The GMR is computed as follow, depending on the number of conductors N that are part of the cable, and the diamater of the conductor d.
Equation | Condition |
---|---|
0.7788 (d/2) | N = 1 |
d1/2 | N = 2 |
d2/3 | N = 3 |
d2/3 | N = 4 |
function computeGMR input Modelica.Units.SI.Length d "Diameter of the conductor"; input Integer N = 1 "Number of conductors"; output Modelica.Units.SI.Length GMR "Geometric Mean Radius"; end computeGMR;