PO.MBE.Ce.PoreVol
Description
Calculates pore volume compressibility term, [1/psi]. cpv = (cw*Swc + cf) / (1 - Swc).
Syntax
=PO.MBE.Ce.PoreVol(cw, cf, Swc)Parameters
| Parameter | Description |
|---|---|
| cw | Water compressibility, [1/psi]. |
| cf | Formation compressibility, [1/psi]. |
| Swc | Connate water saturation, [fraction]. |
SI Unit Version
Lambda Name
PO.MBE.Ce.PoreVol.SIFormula
=LAMBDA(cw, cf, Swc, LET(
cw_1psi, PO.UnitConverter(cw, "1/kPa", "1/psi"),
cf_1psi, PO.UnitConverter(cf, "1/kPa", "1/psi"),
result_1psi, PO.MBE.Ce.PoreVol(cw_1psi, cf_1psi, Swc),
PO.UnitConverter(result_1psi, "1/psi", "1/kPa")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
cw |
1/kPa | Water compressibility, [1/kPa] |
cf |
1/kPa | Formation compressibility, [1/kPa] |
Swc |
- | Connate water saturation, [fraction] |
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.MBE.Ce.PoreVol.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.MBE.Ce.PoreVol.SI(...) anywhere in your workbook.