PO.ESP.Viscosity.Rate.Corr
Description
Applies viscosity correction to flow rate, [gpm].
Syntax
=PO.ESP.Viscosity.Rate.Corr(Q_water, C_Q)Parameters
| Parameter | Description |
|---|---|
| Q_water | Flow rate on water, [gpm]. |
| C_Q | Flow rate correction factor, [dimensionless]. |
SI Unit Version
Lambda Name
PO.ESP.Viscosity.Rate.Corr.SIFormula
=LAMBDA(Q_water, C_Q, LET(
Q_water_galmin, PO.UnitConverter(Q_water, "m3/h", "gal/min"),
result_galmin, PO.ESP.Viscosity.Rate.Corr(Q_water_galmin, C_Q),
PO.UnitConverter(result_galmin, "gal/min", "m3/h")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
Q_water |
m3/h | Flow rate on water, [m3/h] |
C_Q |
- | Flow rate correction factor, [dimensionless] |
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.Viscosity.Rate.Corr.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.ESP.Viscosity.Rate.Corr.SI(...) anywhere in your workbook.