PressureUnit
Short summary
This enumeration contains common physical pressure units.
Underlying type: default
Components
| Name | Value | Comment |
|---|---|---|
| PASCAL | 0 | - |
| BAR | implicit | pound per square inch |
| PSI | implicit | pound per square inch |
Code
Declaration
{attribute 'qualified_only'}
{attribute 'to_string'}
TYPE PressureUnit :
(
PASCAL := 0,
BAR,
(* pound per square inch *)
PSI
);
END_TYPE