PO.PVT.Rs.ByVasquezBeggs.SI
Description
Calculates solution gas-oil ratio using Vasquez and Beggs (1980) correlation, [sm3/sm3] (SI units).
Formula
=LAMBDA(SG_gas, API, P, T_degC, LET(
P_psi, PO.UnitConverter(P, "kPa", "psi"),
T_degF, PO.UnitConverter(T_degC, "degC", "degF"),
result_scfSTB, PO.PVT.Rs.ByVasquezBeggs(SG_gas, API, P_psi, T_degF),
PO.UnitConverter(result_scfSTB, "scf/STB", "sm3/sm3")))Parameters
| Parameter | Unit | Description |
|---|---|---|
SG_gas |
- | Gas specific gravity (air = 1.0) |
API |
- | Oil API gravity |
P |
kPa | Pressure |
T_degC |
degC | Temperature |
Examples
| Invocation | Expected |
|---|---|
=PO.PVT.Rs.ByVasquezBeggs.SI(0.65, 35, 17237, 93.33) |
79.214347 |