PO.ESP.TDH.NetLift.SI
Description
Calculates net vertical lift (pump depth minus fluid level), [m] (SI units).
Formula
=LAMBDA(TVD_pump, DFL, LET(
TVD_pump_ft, PO.UnitConverter(TVD_pump, "m", "ft"),
DFL_ft, PO.UnitConverter(DFL, "m", "ft"),
result_ft, PO.ESP.TDH.NetLift(TVD_pump_ft, DFL_ft),
PO.UnitConverter(result_ft, "ft", "m")))Parameters
| Parameter | Unit | Description |
|---|---|---|
TVD_pump |
m | Pump setting depth (TVD), [m] |
DFL |
m | Dynamic fluid level, [m] |
Examples
| Invocation | Expected |
|---|---|
=PO.ESP.TDH.NetLift.SI(30.48, 30.48) |
0 |