PO.ESP.TDH.NetLift
Description
Calculates net vertical lift (pump depth minus fluid level), [ft].
Syntax
=PO.ESP.TDH.NetLift(TVD_pump, DFL)Parameters
| Parameter | Description |
|---|---|
| TVD_pump | Pump setting depth (TVD), [ft]. |
| DFL | Dynamic fluid level, [ft]. |
SI Unit Version
Lambda Name
PO.ESP.TDH.NetLift.SIFormula
=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")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
TVD_pump |
m | Pump setting depth (TVD), [m] |
DFL |
m | Dynamic fluid level, [m] |
How to save as a reusable Excel function
LAMBDA is a built-in Excel feature (Microsoft 365) that lets you create custom functions without VBA. The formula above works as-is when pasted into a cell.
To save a LAMBDA as a reusable named function:
- Go to Formulas → Name Manager → New
- Enter a name, e.g.
PO.ESP.TDH.NetLift.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.ESP.TDH.NetLift.SI(...) anywhere in your workbook.