PO.RP.Torque.IdealCBE
Description
Calculates ideal counterbalance effect from rod weight and fluid load, [lb].
Syntax
=PO.RP.Torque.IdealCBE(Wrf, Fo)Parameters
| Parameter | Description |
|---|---|
| Wrf | Buoyant rod weight, [lb]. |
| Fo | Fluid load, [lb]. |
SI Unit Version
Lambda Name
PO.RP.Torque.IdealCBE.SIFormula
=LAMBDA(Wrf, Fo, LET(
Wrf_lbf, PO.UnitConverter(Wrf, "N", "lbf"),
Fo_lbf, PO.UnitConverter(Fo, "N", "lbf"),
result_lbf, PO.RP.Torque.IdealCBE(Wrf_lbf, Fo_lbf),
PO.UnitConverter(result_lbf, "lbf", "N")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
Wrf |
N | Buoyant rod weight, [N] |
Fo |
N | Fluid load, [N] |
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.RP.Torque.IdealCBE.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.RP.Torque.IdealCBE.SI(...) anywhere in your workbook.