PO.PVT.Tpc.BySutton
Description
Calculates pseudo-critical temperature of hydrocarbon gas using Sutton (1985) correlation, [degR].
Syntax
=PO.PVT.Tpc.BySutton(SG_gas)Parameters
| Parameter | Description |
|---|---|
| SG_gas | Gas specific gravity, [dimensionless]. |
SI Unit Version
Lambda Name
PO.PVT.Tpc.BySutton.SIFormula
=LAMBDA(SG_gas, LET(
result_degR, PO.PVT.Tpc.BySutton(SG_gas),
PO.UnitConverter(result_degR, "degR", "degK")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
SG_gas |
- | Gas specific gravity (air = 1.0) |
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.PVT.Tpc.BySutton.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.PVT.Tpc.BySutton.SI(...) anywhere in your workbook.