PO.ESP.Cable.PowerLoss.SI
Description
Calculates power loss in cable, [kW] (SI units).
Formula
=LAMBDA(I, length, R, LET(
length_ft, PO.UnitConverter(length, "m", "ft"),
R_ohm1000ft, R * PO.UnitConverter(1000, "ft", "km"),
result_kw, PO.ESP.Cable.PowerLoss(I, length_ft, R_ohm1000ft),
result_kw))Parameters
| Parameter | Unit | Description |
|---|---|---|
I |
- | Motor current, [A] |
length |
m | Cable length, [m] |
R |
ohm/km | Cable resistance, [ohm/km] |
Examples
| Invocation | Expected |
|---|---|
=PO.ESP.Cable.PowerLoss.SI(1, 30.48, 0.1) |
9.144E-06 |