PO.ESP.Cable.Vdrop.SI
Description
Calculates voltage drop in ESP cable (3-phase), [V] (SI units).
Formula
=LAMBDA(I, length, R, LET(
length_ft, PO.UnitConverter(length, "m", "ft"),
R_ohm1000ft, R * PO.UnitConverter(1000, "ft", "km"),
result_v, PO.ESP.Cable.Vdrop(I, length_ft, R_ohm1000ft),
result_v))Parameters
| Parameter | Unit | Description |
|---|---|---|
I |
- | Motor current, [A] |
length |
m | Cable length (one-way), [m] |
R |
ohm/km | Cable resistance, [ohm/km] |
Examples
| Invocation | Expected |
|---|---|
=PO.ESP.Cable.Vdrop.SI(1, 30.48, 0.1) |
0.00527929 |