PO.FRAC.Leakoff.Vol
Description
Total leakoff volume from fracture, [bbl].
Syntax
=PO.FRAC.Leakoff.Vol(C, Sp, A, t)Parameters
| Parameter | Description |
|---|---|
| C | Total leakoff coefficient, [ft/sqrt(min)]. |
| Sp | Spurt loss, [ft]. Use 0 if no spurt. |
| A | Total fracture surface area (both faces), [sq ft]. |
| t | Pumping time, [min]. |
SI Unit Version
Lambda Name
PO.FRAC.Leakoff.Vol.SIFormula
=LAMBDA(C, Sp, A, t, LET(
C_ft, PO.UnitConverter(C, "m", "ft"),
Sp_ft, PO.UnitConverter(Sp, "m", "ft"),
A_ft2, PO.UnitConverter(A, "m2", "ft2"),
result_bbl, PO.FRAC.Leakoff.Vol(C_ft, Sp_ft, A_ft2, t),
PO.UnitConverter(result_bbl, "bbl", "m3")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
C |
m/sqrt(min) | Total leakoff coefficient, [m/sqrt(min)] |
Sp |
m | Spurt loss, [m]. Use 0 if no spurt |
A |
m2 | Total fracture surface area (both faces), [m2] |
t |
- | Pumping time, [min] |
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.FRAC.Leakoff.Vol.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.FRAC.Leakoff.Vol.SI(...) anywhere in your workbook.