PO.PVT.IFT.GasOil.ByAbdulMajeed
Description
Calculates interfacial (surface) tension for live oil using Abdul-Majeed (2000) correlation, [dynes/cm].
Syntax
=PO.PVT.IFT.GasOil.ByAbdulMajeed(API, T_degF, Rs)Parameters
| Parameter | Description |
|---|---|
| API | Oil gravity, [API]. |
| T_degF | Temperature, [degF]. |
| Rs | Solution gas-oil ratio, [scf/STB]. |
SI Unit Version
Lambda Name
PO.PVT.IFT.GasOil.ByAbdulMajeed.SIFormula
=LAMBDA(API, T_degC, Rs, LET(
T_degF, PO.UnitConverter(T_degC, "degC", "degF"),
Rs_scfSTB, PO.UnitConverter(Rs, "sm3/sm3", "scf/STB"),
result_dynecm, PO.PVT.IFT.GasOil.ByAbdulMajeed(API, T_degF, Rs_scfSTB),
PO.UnitConverter(result_dynecm, "dyne/cm", "mN/m")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
API |
- | Oil API gravity |
T_degC |
degC | Temperature |
Rs |
sm3/sm3 | Solution gas-oil ratio |
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.IFT.GasOil.ByAbdulMajeed.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.PVT.IFT.GasOil.ByAbdulMajeed.SI(...) anywhere in your workbook.