PO.FRAC.Radial.Radius.Leakoff
Description
Radial (Penny-shaped) fracture radius with Carter leakoff, [ft].
Syntax
=PO.FRAC.Radial.Radius.Leakoff(Q, C, t)Parameters
| Parameter | Description |
|---|---|
| Q | Injection rate, [bbl/min]. |
| C | Carter leakoff coefficient, [ft/sqrt(min)]. |
| t | Pumping time, [min]. |
SI Unit Version
Lambda Name
PO.FRAC.Radial.Radius.Leakoff.SIFormula
=LAMBDA(Q, C, t, LET(
Q_bblmin, PO.UnitConverter(Q, "m3/min", "bbl/min"),
C_ft, PO.UnitConverter(C, "m", "ft"),
result_ft, PO.FRAC.Radial.Radius.Leakoff(Q_bblmin, C_ft, t),
PO.UnitConverter(result_ft, "ft", "m")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
Q |
m3/min | Injection rate, [m3/min] |
C |
m/sqrt(min) | Carter leakoff coefficient, [m/sqrt(min)] |
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.Radial.Radius.Leakoff.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.FRAC.Radial.Radius.Leakoff.SI(...) anywhere in your workbook.