PO.VFP.Liq.dPgrv.SI
Description
Calculates potential energy pressure drop for single-phase flow of an incompressible, Newtonian fluid, [kPa] (SI units).
Formula
=LAMBDA(Rho_l, pipe_length, pipe_angle, LET(
Rho_l_lbft3, PO.UnitConverter(Rho_l, "kg/m3", "lb/ft3"),
pipe_length_ft, PO.UnitConverter(pipe_length, "m", "ft"),
result_psi, PO.VFP.Liq.dPgrv(Rho_l_lbft3, pipe_length_ft, pipe_angle),
PO.UnitConverter(result_psi, "psi", "kPa")))Parameters
| Parameter | Unit | Description |
|---|---|---|
Rho_l |
kg/m3 | Liquid density, [kg/m3] |
pipe_length |
m | Pipe length, [m] |
pipe_angle |
- | Pipe angle from horizontal, [degrees]. Horizontal flow: angle = 0; Vertical well producer: angle = 90; Vertical well injector: angle = -90 |
Examples
| Invocation | Expected |
|---|---|
=PO.VFP.Liq.dPgrv.SI(800, 914.4, 90) |
7173.7606 |