PO.ESP.BrakeHP.FromRate.SI
Description
Calculates brake horsepower directly from rate and head, [kW] (SI units).
Formula
=LAMBDA(Q, TDH, SG, efficiency, LET(
Q_bbld, PO.UnitConverter(Q, "m3/d", "bbl/d"),
TDH_ft, PO.UnitConverter(TDH, "m", "ft"),
result_hp, PO.ESP.BrakeHP.FromRate(Q_bbld, TDH_ft, SG, efficiency),
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] |
efficiency |
- | Pump efficiency, [fraction 0-1] |
Examples
| Invocation | Expected |
|---|---|
=PO.ESP.BrakeHP.FromRate.SI(0.159, 1524, 0.85, 0.6) |
0.03875217 |