PO.FA.Hydrate.dTsub.SI
Description
Calculates subcooling (hydrate formation temp minus operating temp), [degK] (SI units).
Formula
=LAMBDA(T_hyd, T_op, LET(
T_hyd_degF, PO.UnitConverter(T_hyd, "degC", "degF"),
T_op_degF, PO.UnitConverter(T_op, "degC", "degF"),
result_degR, PO.FA.Hydrate.dTsub(T_hyd_degF, T_op_degF),
PO.UnitConverter(result_degR, "degR", "degK")))Parameters
| Parameter | Unit | Description |
|---|---|---|
T_hyd |
degC | Hydrate formation temperature, [degC] |
T_op |
degC | Operating temperature, [degC] |
Examples
| Invocation | Expected |
|---|---|
=PO.FA.Hydrate.dTsub.SI(21.11, 10) |
11.11 |