diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2006-2008, Bjorn Buckwalter.
+Copyright (c) 2006-2010, Bjorn Buckwalter.
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/Numeric/Units/Dimensional.lhs b/Numeric/Units/Dimensional.lhs
--- a/Numeric/Units/Dimensional.lhs
+++ b/Numeric/Units/Dimensional.lhs
@@ -443,12 +443,17 @@
 that often show up in formulae. We also throw in 'pi' for good
 measure.
 
-> _0, _1, _2, _3, _4 :: (Num a) => Dimensionless a
+> _0, _1, _2, _3, _4, _5, _6, _7, _8, _9 :: (Num a) => Dimensionless a
 > _0 = 0 *~ one
 > _1 = 1 *~ one
 > _2 = 2 *~ one
 > _3 = 3 *~ one
 > _4 = 4 *~ one
+> _5 = 5 *~ one
+> _6 = 6 *~ one
+> _7 = 7 *~ one
+> _8 = 8 *~ one
+> _9 = 9 *~ one
 
 > pi :: (Floating a) => Dimensionless a
 > pi = Prelude.pi *~ one
diff --git a/Numeric/Units/Dimensional/CGS.lhs b/Numeric/Units/Dimensional/CGS.lhs
--- a/Numeric/Units/Dimensional/CGS.lhs
+++ b/Numeric/Units/Dimensional/CGS.lhs
@@ -50,7 +50,7 @@
 >            , FlexibleInstances
 >            , FlexibleContexts
 > #-}
-
+> {-# OPTIONS_GHC -fcontext-stack=22 #-}
 > {- |
 >    Copyright  : Copyright (C) 2006-2008 Bjorn Buckwalter
 >    License    : BSD3
diff --git a/Numeric/Units/Dimensional/NonSI.lhs b/Numeric/Units/Dimensional/NonSI.lhs
--- a/Numeric/Units/Dimensional/NonSI.lhs
+++ b/Numeric/Units/Dimensional/NonSI.lhs
@@ -53,8 +53,20 @@
 > unifiedAtomicMassUnit = prefix 1.6605402e-27 (kilo gram)
 
 
-= Other units =
+= Standard gravity =
 
+In order to relate e.g. pounds mass to pounds force we define the unit
+'gee' equal to the standard gravity g_0: the nominal acceleration of a
+body in free fall in a vacuum near the surface of the earth (note that
+local values of acceleration due to gravity will differ from the standard
+gravity). I.e. g_0 = 1 gee.
+
+> gee :: Fractional a => Unit DAcceleration a
+> gee = prefix 9.80665 meter / second ^ pos2
+
+
+= Inch-pound units =
+
 Some US customary (that is, inch-pound) units.
 
 > inch, foot :: Fractional a => Unit DLength a
@@ -64,30 +76,28 @@
 > poundMass = prefix 0.45359237 (kilo gram)
 > ounce     = prefix 28.349523 gram
 
-In order to relate pounds mass to pounds force we define the
-questionable unit 'gee' (G) as the gravitational acceleration at
-sea level. Note that 'gee' is experimental and has an inherent
-uncertainty which also transfers to 'poundForce'.
-
-> gee :: Fractional a => Unit DAcceleration a
-> gee = prefix 9.80665 meter / second ^ pos2
 > poundForce :: Fractional a => Unit DForce a
 > poundForce = poundMass * gee  -- 4.4482 N
 
-Other (non inch-pound) units.
+Pounds of force per square inch.
 
+> psi :: Fractional a => Unit DPressure a
+> psi = poundForce / inch ^ pos2
+
+
+= Various other (non inch-pound) units =
+
 > yard, mile, nauticalMile :: (Fractional a) => Unit DLength a
 > yard = prefix 3 foot
 > mile = prefix 1760 yard
 > nauticalMile = prefix 1852 meter
 > revolution :: (Floating a) => Unit DOne a
-> revolution = prefix 360 degree
-> bar :: (Fractional a) => Unit DPressure a
-> bar = prefix 1.0e5 pascal
+> revolution = prefix (2 Prelude.* Prelude.pi) radian
+> solid :: (Floating a) => Unit DOne a
+> solid = prefix (4 Prelude.* Prelude.pi) steradian
 > teaspoon :: (Fractional a) => Unit DVolume a
 > teaspoon = prefix 5 (milli liter)
 
-
 The IAU recommends[2] that:
 
   Although there are several different kinds of year (as there are
@@ -103,7 +113,60 @@
 > century = prefix 100 year
 
 
+= Pressure units =
+
+Psi was defined earlier.
+
+> bar :: (Fractional a) => Unit DPressure a
+> bar = prefix 1.0e5 pascal
+
+From Wikipedia[3]:
+
+  The standard atmosphere (atm) is an established constant. It is
+  approximately equal to typical air pressure at earth mean sea
+  level.
+
+> atmosphere :: (Fractional a) => Unit DPressure a
+> atmosphere = prefix 101325 pascal
+
+From Wikipedia:
+
+  A technical atmosphere (symbol: at) is a non-SI unit of pressure equal
+  to one kilogram-force per square centimeter.
+
+> technicalAtmosphere :: (Fractional a) => Unit DPressure a
+> technicalAtmosphere = kilo gram * gee * centi meter ^ neg2
+
+Manometric pressure units:
+
+Per Wikipedia[4] one mmHg (millimeter of mercury) is defined as:
+
+  The pressure exerted at the base of a column of fluid exactly 1 mm high,
+  when the density of the fluid is exactly 13.5951 g/cm^3, at a place
+  where the acceleration of gravity is exactly 9.80665 m/s^2.
+
+The chosen fluid density approximately corresponds to that of mercury
+at 0 deg. Under most conditions, 1 mmHg is approximately equal to 1 torr.
+
+> mmHg :: (Fractional a) => Unit DPressure a
+> mmHg = prefix 13.5951 gram * centi meter ^ neg3 * milli meter * gee
+
+One torr (symbol: Torr) is defined as 1/760 atm, which is approximately equal
+to 1 mmHg.
+
+> torr :: (Fractional a) => Unit DPressure a
+> torr = prefix (1 Prelude./ 760) atmosphere
+
+
+= Radiation =
+
+> rad :: (Fractional a) => Unit DAbsorbedDose a
+> rad = centi gray
+
+
 = References =
 
 [1] http://physics.nist.gov/Pubs/SP811/
 [2] http://www.iau.org/science/publications/proceedings_rules/units/
+[3] http://en.m.wikipedia.org/wiki/Pressure
+[4] http://en.m.wikipedia.org/wiki/Torr
diff --git a/dimensional.cabal b/dimensional.cabal
--- a/dimensional.cabal
+++ b/dimensional.cabal
@@ -1,8 +1,8 @@
 Name:                dimensional
-Version:             0.8.0.1
+Version:             0.8.2.1
 License:             BSD3
 License-File:        LICENSE
-Copyright:           Bjorn Buckwalter 2006-2010
+Copyright:           Bjorn Buckwalter 2006-2011
 Author:              Bjorn Buckwalter
 Maintainer:          bjorn.buckwalter@gmail.com
 Stability:           mostly stable
