PO.ESP.HydraulicHP.SI
Description
Calculates theoretical hydraulic horsepower (bbl/d basis), [kW] (SI units).
Formula
=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")))Parameters
| Parameter | Unit | Description |
|---|---|---|
Q |
m3/d | Liquid flow rate, [m3/d] |
TDH |
m | Total Dynamic Head, [m] |
SG |
- | Fluid specific gravity, [dimensionless] |
Examples
| Invocation | Expected |
|---|---|
=PO.ESP.HydraulicHP.SI(0.159, 1524, 0.85) |
0.0232513 |