Added radioactivity and Radiation dose categories
authorAnthony Tekatch <anthony@unihedron.com>
Tue, 3 Nov 2009 12:43:39 +0000 (07:43 -0500)
committerAnthony Tekatch <anthony@unihedron.com>
Tue, 3 Nov 2009 12:43:39 +0000 (07:43 -0500)
Added not in CHANGELOG

src/unit_data.py
support/doc/CHANGELOG

index 1c33527..65400e3 100644 (file)
@@ -2189,6 +2189,32 @@ _(u"Electrical Voltage"): {".base_unit": _(u"volt"),
                _(u"pony"):
                [(converters.m, 25.0), "", """Equal to twenty five pounds sterling"""],
        },
                _(u"pony"):
                [(converters.m, 25.0), "", """Equal to twenty five pounds sterling"""],
        },
+
+       _(u"Radioactivity"): {
+               ".base_unit": "becquerel",
+               _(u"becquerel"):
+               [(converters.m, 1.0), u"Bq", 'The SI derived unit of radioactivity.'],
+               _(u"curie"):
+               [(converters.m, 3.7e10), u"Ci", 'Roughly the activity of 1 gram of the radium isotope 226 Ra.'],
+               _(u"pico curie"):
+               [(converters.m, 3.7e-2), u"pCi", ''],
+       },
+
+       _(u"Radiation dose"): {
+               ".base_unit": "Sievert",
+               _(u"Sievert"):
+               [(converters.m, 1.0), u"Sv", ''],
+               _(u"milli Sievert"):
+               [(converters.m, 1.0e-3), u"mSv", ''],
+               _(u"micro Sievert"):
+               [(converters.m, 1.0e-6), u"\xb5Sv", ''],
+               _(u"rem"):
+               [(converters.m, 0.01), u"rem", ''],
+               _(u"milli rem"):
+               [(converters.m, 1.0e-5), u"mrem", ''],
+               _(u"roentgen"):
+               [(converters.m, 1/1.07185e2), u"R", ''],
+       },
 }
 
 
 }
 
 
index 03b8d5b..08becff 100644 (file)
@@ -1,6 +1,8 @@
 Project: gonvert
 
 Version:
 Project: gonvert
 
 Version:
+0.2.24 - Ed Page updated files for Maemo.
+       - Add Radioactivity and Radiation dose categories.
 0.2.23  - Added UK currency category and other UK measurements thanks to Dale Hair
 0.2.22  - Restore previously used window size
 0.2.21  - Category column widened. Maximize on start.
 0.2.23  - Added UK currency category and other UK measurements thanks to Dale Hair
 0.2.22  - Restore previously used window size
 0.2.21  - Category column widened. Maximize on start.