PO.GL.Valve.Pvc
Description
Calculates valve closing pressure, [psi].
Syntax
=PO.GL.Valve.Pvc(Pd, R)Parameters
| Parameter | Description |
|---|---|
| Pd | Dome pressure at operating temperature, [psi]. |
| R | Port to bellows area ratio (Ap/Ab), [dimensionless]. |
SI Unit Version
Lambda Name
PO.GL.Valve.Pvc.SIFormula
=LAMBDA(Pd, R, LET(
Pd_psi, PO.UnitConverter(Pd, "kPa", "psi"),
result_psi, PO.GL.Valve.Pvc(Pd_psi, R),
PO.UnitConverter(result_psi, "psi", "kPa")))SI Parameters
| Parameter | Unit | Description |
|---|---|---|
Pd |
kPa | Dome pressure at operating temperature, [kPa] |
R |
- | Port to bellows area ratio (Ap/Ab), [dimensionless] |
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.GL.Valve.Pvc.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.GL.Valve.Pvc.SI(...) anywhere in your workbook.