PO.ESP.HydraulicHP
Description
Calculates theoretical hydraulic horsepower (bbl/d basis), [HP].
Syntax
=PO.ESP.HydraulicHP(Q, TDH, SG)Parameters
| Parameter | Description |
|---|---|
| Q | Liquid flow rate, [bbl/d]. |
| TDH | Total Dynamic Head, [ft]. |
| SG | Fluid specific gravity, [dimensionless]. |
SI Unit Version
Lambda Name
PO.ESP.HydraulicHP.SIFormula
=LAMBDA(Q, TDH, SG, LET(
Q_bbld, PO.UnitConverter(Q, "m3/d", "bbl/d"),
TDH_ft, PO.UnitConverter(TDH, "m", "ft"),
result_hp, PO.ESP.HydraulicHP(Q_bbld, TDH_ft, SG),
PO.UnitConverter(result_hp, "hp", "kW")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
Q |
m3/d | Liquid flow rate, [m3/d] |
TDH |
m | Total Dynamic Head, [m] |
SG |
- | Fluid specific gravity, [dimensionless] |
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.HydraulicHP.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.ESP.HydraulicHP.SI(...) anywhere in your workbook.