PO.FA.Hydrate.dT.MEG
Description
Calculates temperature depression from MEG using Hammerschmidt equation, [°F].
Syntax
=PO.FA.Hydrate.dT.MEG(W)Parameters
| Parameter | Description |
|---|---|
| W | MEG concentration in aqueous phase, [wt%]. |
SI Unit Version
Lambda Name
PO.FA.Hydrate.dT.MEG.SIFormula
=LAMBDA(W, LET(
result_degR, PO.FA.Hydrate.dT.MEG(W),
PO.UnitConverter(result_degR, "degR", "degK")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
W |
- | MEG concentration in aqueous phase, [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.dT.MEG.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.FA.Hydrate.dT.MEG.SI(...) anywhere in your workbook.