PO.PVT.Uo.Sat.ByBeggsRobinson
Description
Calculates oil viscosity with solution gas using Beggs and Robinson (1975) correlation, P <= Pb, [cP].
Syntax
=PO.PVT.Uo.Sat.ByBeggsRobinson(Rs, Uo_dead)Parameters
| Parameter | Description |
|---|---|
| Rs | Solution gas-oil ratio, [scf/STB]. |
| Uo_dead | Dead oil viscosity, [cP]. |
SI Unit Version
Lambda Name
PO.PVT.Uo.Sat.ByBeggsRobinson.SIFormula
=LAMBDA(Rs, Uo_dead, LET(
Rs_scfSTB, PO.UnitConverter(Rs, "sm3/sm3", "scf/STB"),
Uo_dead_cP, PO.UnitConverter(Uo_dead, "mPa*s", "cP"),
result_cP, PO.PVT.Uo.Sat.ByBeggsRobinson(Rs_scfSTB, Uo_dead_cP),
PO.UnitConverter(result_cP, "cP", "mPa*s")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
Rs |
sm3/sm3 | Solution gas-oil ratio |
Uo_dead |
mPa*s | Dead oil viscosity |
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.Uo.Sat.ByBeggsRobinson.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.PVT.Uo.Sat.ByBeggsRobinson.SI(...) anywhere in your workbook.