About Me
Standard issue carbon unit.
- The case of the Null_Unit unit is defined
  subtype Null_Unit    is Unit( 0, 0, 0, 0, 0, 0, 0);
-Â Derived SI Units with assigned special names and symbols
-Â Â (ISO 1000:1981, Section 2.3, Table 3)
subtype Hertz     = Unit( 0, 0,-1, 0, 0, 0, 0);
 Hz = 1/s       |frequency}
subtype Newton    = Unit( 1, 1,-2, 0, 0, 0, 0);Â
NÂ Â =Â kg*m/s**2Â |force
subtype Pascal    = Unit(-1, 1,-2, 0, 0, 0, 0);Â
Pa = N/m**2    |pressure
subtype Joule     = Unit( 2, 1,-2, 0, 0, 0, 0);
 J  = N*m       |energy
subtype Watt      = Unit( 2, 1,-3, 0, 0, 0, 0)
; W  = J/s       |power
subtype Coulomb   = Unit( 0, 0, 1, 1, 0, 0, 0);Â
C  = A*s       |charge
subtype Volt      = Unit( 2, 1,-3,-1, 0, 0, 0);
 V  = J/C       |potential
subtype Null_Unit = Unit( 0, 0, 0, 0, 0, 0, 0);
63%
..