PO.RP.Torque.Peak
Description
Calculates estimated peak net torque (simplified), [in-lb].
Syntax
=PO.RP.Torque.Peak(PPRL, MPRL, S)Parameters
| Parameter | Description |
|---|---|
| PPRL | Peak polished rod load, [lb]. |
| MPRL | Minimum polished rod load, [lb]. |
| S | Surface stroke length, [in]. |
SI Unit Version
Lambda Name
PO.RP.Torque.Peak.SIFormula
=LAMBDA(PPRL, MPRL, S, LET(
PPRL_lbf, PO.UnitConverter(PPRL, "N", "lbf"),
MPRL_lbf, PO.UnitConverter(MPRL, "N", "lbf"),
S_in, PO.UnitConverter(S, "cm", "in"),
result_inlbf, PO.RP.Torque.Peak(PPRL_lbf, MPRL_lbf, S_in),
PO.UnitConverter(result_inlbf, "in*lbf", "N*m")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
PPRL |
N | Peak polished rod load, [N] |
MPRL |
N | Minimum polished rod load, [N] |
S |
cm | Surface stroke length, [cm] |
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.Peak.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.RP.Torque.Peak.SI(...) anywhere in your workbook.