PO.ESP.Pump.TotalHead.SI
Description
Calculates total head from number of stages, [m] (SI units).
Formula
=LAMBDA(stages, head_per_stage, LET(
head_per_stage_ft, PO.UnitConverter(head_per_stage, "m", "ft"),
result_ft, PO.ESP.Pump.TotalHead(stages, head_per_stage_ft),
PO.UnitConverter(result_ft, "ft", "m")))Parameters
| Parameter | Unit | Description |
|---|---|---|
stages |
- | Number of stages |
head_per_stage |
m | Head per stage, [m] |
Examples
| Invocation | Expected |
|---|---|
=PO.ESP.Pump.TotalHead.SI(1, 3.048) |
3.048 |