PO.IPR.VW.SS.Rate.ByVogel
Description
Calculates Vogel inflow performance for steady state flow, [bbl/D].
Syntax
=PO.IPR.VW.SS.Rate.ByVogel(J, Pe, Pwf, Pb)Parameters
| Parameter | Description |
|---|---|
| J | Steady state productivity index of the well, [bbl/(D.psi)]. |
| Pe | Pressure at the constant-pressure boundary, [psi]. |
| Pwf | Bottom-hole flowing pressure, [psi]. |
| Pb | Bubble point pressure, [psi]. |
SI Unit Version
Lambda Name
PO.IPR.VW.SS.Rate.ByVogel.SIFormula
=LAMBDA(J, Pe, Pwf, Pb, LET(
J_field, J * PO.UnitConverter(1, "psi", "kPa") / PO.UnitConverter(1, "bbl/d", "m3/d"),
Pe_psi, PO.UnitConverter(Pe, "kPa", "psi"),
Pwf_psi, PO.UnitConverter(Pwf, "kPa", "psi"),
Pb_psi, PO.UnitConverter(Pb, "kPa", "psi"),
result_bbld, PO.IPR.VW.SS.Rate.ByVogel(J_field, Pe_psi, Pwf_psi, Pb_psi),
PO.UnitConverter(result_bbld, "bbl/d", "m3/d")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
J |
m3/d/kPa | Steady state productivity index of the well, [m3/d/kPa] |
Pe |
kPa | Pressure at the constant-pressure boundary, [kPa] |
Pwf |
kPa | Bottom-hole flowing pressure, [kPa] |
Pb |
kPa | Bubble point pressure, [kPa] |
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.IPR.VW.SS.Rate.ByVogel.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.IPR.VW.SS.Rate.ByVogel.SI(...) anywhere in your workbook.