|
79 | 79 | This is the subset of common symbols whose short form symbols are allowed
|
80 | 80 | """
|
81 | 81 | set_of_very_common_units_in_SI = {
|
82 |
| - ('radian', 'r', '(1/(2*pi))', tuple(), ('radians',)), # Note: here 'r' is used instead of the more common 'rad' to avoid collision |
83 |
| - ('steradian', 'sr', '(1)', tuple(), ('steradians',)), |
| 82 | + ('radian', 'rad', '(1/(2*pi))', tuple(), ('radians',)), # Note: here 'r' is used instead of the more common 'rad' to avoid collision |
| 83 | + ('steradian', 'sr', '(1)', tuple(), ('steradians',)), |
84 | 84 | ('minute', 'min', '(60*second)', tuple(), ('minutes',)),
|
85 | 85 | ('hour', 'h', '(3600*second)', tuple(), ('hours',)),
|
86 | 86 | ('degree', 'deg', '(pi/180)', tuple(), ('degrees',)),
|
|
111 | 111 | ('barn', 'b', '(10**(-28)*metre**2)', tuple(), ('barns',)),
|
112 | 112 | ('curie', 'Ci', '(3.7*10**10*becquerel)', ('Curie',), ('curies',)),
|
113 | 113 | ('roentgen', 'R', '(2.58*10**(-4)*kelvin/(kilogram))', ('Roentgen', 'Röntgen'), ('roentgens', 'Roentgens')),
|
114 |
| - ('rad', 'rad', '(10**(-2)*gray)', tuple(), ('rads',)), |
| 114 | + # Removed rad since it collides with the short form for radian. |
| 115 | + #('rad', 'rad', '(10**(-2)*gray)', tuple(), ('rads',)), |
115 | 116 | ('rem', 'rem', '(10**(-2)*sievert)', tuple(), ('rems',)),
|
116 | 117 | }
|
117 | 118 |
|
|
0 commit comments