PO.ESP.Pump.Pdis.SI
Description
Calculates pump discharge pressure, [kPa] (SI units).
Formula
=LAMBDA(PIP, stages, head_per_stage, SG, LET(
PIP_psi, PO.UnitConverter(PIP, "kPa", "psi"),
head_per_stage_ft, PO.UnitConverter(head_per_stage, "m", "ft"),
result_psi, PO.ESP.Pump.Pdis(PIP_psi, stages, head_per_stage_ft, SG),
PO.UnitConverter(result_psi, "psi", "kPa")))Parameters
| Parameter | Unit | Description |
|---|---|---|
PIP |
kPa | Pump intake pressure, [kPa] |
stages |
- | Number of pump stages |
head_per_stage |
m | Head per stage, [m] |
SG |
- | Fluid specific gravity, [dimensionless] |
Examples
| Invocation | Expected |
|---|---|
=PO.ESP.Pump.Pdis.SI(17237, 1, 3.048, 0.85) |
17262.37 |