PO.ESP.TDH.SI
Description
Calculates Total Dynamic Head for ESP sizing, [m] (SI units).
Formula
=LAMBDA(TVD_pump, WHP, PIP, friction_head, SG, LET(
TVD_pump_ft, PO.UnitConverter(TVD_pump, "m", "ft"),
WHP_psi, PO.UnitConverter(WHP, "kPa", "psi"),
PIP_psi, PO.UnitConverter(PIP, "kPa", "psi"),
friction_head_ft, PO.UnitConverter(friction_head, "m", "ft"),
result_ft, PO.ESP.TDH(TVD_pump_ft, WHP_psi, PIP_psi, friction_head_ft, SG),
PO.UnitConverter(result_ft, "ft", "m")))Parameters
| Parameter | Unit | Description |
|---|---|---|
TVD_pump |
m | True vertical depth to pump intake, [m] |
WHP |
kPa | Wellhead pressure, [kPa] |
PIP |
kPa | Pump intake pressure, [kPa] |
friction_head |
m | Tubing friction losses as head, [m] |
SG |
- | Fluid specific gravity, [dimensionless] |
Examples
| Invocation | Expected |
|---|---|
=PO.ESP.TDH.SI(30.48, 17237, 17237, 30.48, 0.85) |
60.96 |