PO.ESP.Head.PressureAtDepth.SI
Description
Calculates pressure at depth given surface pressure, [kPa] (SI units).
Formula
=LAMBDA(P_surface, TVD, SG, LET(
P_surface_psi, PO.UnitConverter(P_surface, "kPa", "psi"),
TVD_ft, PO.UnitConverter(TVD, "m", "ft"),
result_psi, PO.ESP.Head.PressureAtDepth(P_surface_psi, TVD_ft, SG),
PO.UnitConverter(result_psi, "psi", "kPa")))Parameters
| Parameter | Unit | Description |
|---|---|---|
P_surface |
kPa | Surface pressure, [kPa] |
TVD |
m | True vertical depth, [m] |
SG |
- | Fluid specific gravity, [dimensionless] |
Examples
| Invocation | Expected |
|---|---|
=PO.ESP.Head.PressureAtDepth.SI(17237, 30.48, 0.85) |
17490.7 |