PO.ESP.BrakeHP
Description
Calculates brake horsepower accounting for pump efficiency, [HP].
Syntax
=PO.ESP.BrakeHP(HP_hyd, efficiency)Parameters
| Parameter | Description |
|---|---|
| HP_hyd | Hydraulic horsepower, [HP]. |
| efficiency | Pump efficiency, [fraction 0-1]. |
SI Unit Version
Lambda Name
PO.ESP.BrakeHP.SIFormula
=LAMBDA(HP_hyd, efficiency, LET(
HP_hyd_hp, PO.UnitConverter(HP_hyd, "kW", "hp"),
result_hp, PO.ESP.BrakeHP(HP_hyd_hp, efficiency),
PO.UnitConverter(result_hp, "hp", "kW")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
HP_hyd |
kW | Hydraulic horsepower, [kW] |
efficiency |
- | Pump efficiency, [fraction 0-1] |
How to save as a reusable Excel function
LAMBDA is a built-in Excel feature (Microsoft 365) that lets you create custom functions without VBA. The formula above works as-is when pasted into a cell.
To save a LAMBDA as a reusable named function:
- Go to Formulas → Name Manager → New
- Enter a name, e.g.
PO.ESP.BrakeHP.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.ESP.BrakeHP.SI(...) anywhere in your workbook.