PO.FA.Hydrate.Qinj.MeOH
Description
Calculates methanol injection rate required, [gal/day].
Syntax
=PO.FA.Hydrate.Qinj.MeOH(Qw, W)Parameters
| Parameter | Description |
|---|---|
| Qw | Water production rate, [bbl/day]. |
| W | Required methanol concentration, [wt%]. |
SI Unit Version
Lambda Name
PO.FA.Hydrate.Qinj.MeOH.SIFormula
=LAMBDA(Qw, W, LET(
Qw_bbld, PO.UnitConverter(Qw, "m3/d", "bbl/d"),
result_gald, PO.FA.Hydrate.Qinj.MeOH(Qw_bbld, W),
PO.UnitConverter(result_gald, "gal/d", "L/d")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
Qw |
m3/d | Water production rate, [m3/d] |
W |
- | Required methanol concentration, [wt%] |
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.FA.Hydrate.Qinj.MeOH.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.FA.Hydrate.Qinj.MeOH.SI(...) anywhere in your workbook.