/* Velocity Units */
FtPerSec = 20, /* feet per second */ MetersPerSec = 21, /* meters per second */ InPerSec = 114, /* inches per second */ InPerMin = 115, /* inches per minute */ FtPerMin = 116, /* feet per minute */ MetersPerHr = 120, /* meters per hour */
/* Volume Units */ Gallons = 40, /* gallons */ Liters = 41, /* liters */
ImpGallons = 42, /* imperial gallons */ CuMeters = 43, /* cubic meters */ Barrels = 46, /* barrels */
Bushels = 110, /* bushels */ CuYard = 111, /* cubic yards */ CuFeet = 112, /* cubic feet */ CuInch = 113, /* cubic inches */
BarrelsLiquid = 124, /* liquid barrels - 1 bbl liq = 31.5 US gallons */ NormalCuMeter = 166, /* normal cubic meter - MKS System */ NormalLiter = 167, /* normal liter - MKS System */
StdCuFeet = 168, /* standard cubic feet - US System */ HectoLiter = 236, /* hectoliters */
/* Length Units */ Feet = 44, /* feet */ Meters = 45, /* meters */ Inches = 47, /* inches */ CM = 48, /* centimeters */
MM= 49, /* millimeters */
FtInSixteenths = 151, /* see Note 1 in HART document
Min = 50, /* minutes */ Sec = 51, /* seconds */ Hr = 52, /* hours */ Day = 53, /* days */
/* Mass Units */
Gram = 60, /* grams */ KG = 61, /* kilograms */ MetricTon = 62, /* metric tons */ Pound = 63, /* pounds */ ShortTon = 64, /* short tons */ LongTon = 65, /* long tons */ Ounce = 125, /* ounce */
/* Mass Flow Units */
GramPerSec = 70, /* grams per second */ GramPerMin = 71, /* grams per minute */ GramPerHr = 72, /* grams per hour */ KGPerSec = 73, /* kilograms per second */ KGPerMin = 74, /* kilograms per minute */ KGPerHr = 75, /* kilograms per hour */ KGPerDay = 76, /* kilograms per day */ MetTonPerMin = 77, /* metric tons per minute */ MetTonPerHr = 78, /* metric tons per hour */ MetTonPerDay = 79, /* metric tons per day */ PoundsPerSec = 80, /* pounds per second */ PoundsPerMin = 81, /* pounds per minute */ PoundsPerHr = 82, /* pounds per hour */ PoundsPerDay = 83, /* pounds per day */ ShTonPerMin = 84, /* short tons per minute */ ShTonPerHr = 85, /* short tons per hour */ ShTonPerDay = 86, /* short tons per day */ LongTonPerHr = 87, /* long tons per hour */ LongTonPerDay = 88, /* long tons per day */
/* Density Units */
SGU = 90, /* specific gravity units */
GramPerCuCm = 91, /* grams per cubic centimeter */
39