forked from mikeash/mikeash.com-svn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnits.py
247 lines (206 loc) · 8.94 KB
/
Units.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
from CalcException import CalcException
class Unit:
def __init__(self, shortname, longname, baseQuantity = None, baseUnits = None):
# if two parameters are provided then you get a baseQuantity
# of 1 and a baseUnits of None, to indicate a base unit
# if three parameters are provided then you get a baseUnits
# of {} to indicate a prefix
# if four parameters are provided it indicates a composite unit
if not shortname:
shortname = longname
self.shortname = shortname
self.longname = longname
if baseQuantity == None:
self.baseQuantity = 1
self.baseUnits = None
else:
self.baseQuantity = baseQuantity
if baseUnits == None:
self.baseUnits = {}
else:
self.baseUnits = baseUnits
self.shouldDeriveImmediately = False
self.isPrefix = False
def __str__(self):
return self.shortname
def __cmp__(self, other):
if self.__class__ != other.__class__:
return -1
if self.isPrefix and not other.isPrefix:
return -1
elif not self.isPrefix and other.isPrefix:
return 1
else:
return cmp(self.longname, other.longname)
def __hash__(self):
return hash(self.longname)
def setShouldDeriveImmediately(self):
self.shouldDeriveImmediately = True
def setIsPrefix(self):
self.isPrefix = True
def get(str):
if units.has_key(str):
return units[str]
else:
raise CalcException("unknown unit %s" % str)
def parseUnits(str):
str = str.strip()
for l in range(len(str), 0, -1):
unit = None
substr = str[:l]
if l < len(str) and prefixes.has_key(substr):
unit = prefixes[substr]
elif units.has_key(substr):
unit = units[substr]
elif constants.has_key(substr):
unit = constants[substr]
if unit != None:
if l == len(str):
return [unit]
else:
try:
return [unit] + parseUnits(str[l:])
except CalcException, inst:
pass
raise CalcException("unknown unit %s" % str)
def getBaseUnit(str):
if prefixes.has_key(str):
return prefixes[str]
elif units.has_key(str):
return units[str]
else:
raise CalcException("unknown unit %s" % str)
baseUnits = [
Unit('m', 'meter'),
Unit('g', 'gram'),
Unit('s', 'second'),
Unit('A', 'ampere'),
Unit('K', 'kelvin'),
Unit('B', 'byte'),
Unit('USD', 'dollar'),
]
derivedUnits = [
Unit('N', 'newton', 1, {'kilo':1, 'gram':1, 'meter':1, 'second':-2}),
Unit('J', 'joule', 1, {'newton':1, 'meter':1}),
Unit('W', 'watt', 1, {'joule':1, 'second':-1}),
Unit('Pa', 'pascal', 1, {'newton':1, 'meter':-2}),
Unit('C', 'coulomb', 1, {'ampere':1, 'second':1}),
Unit('V', 'volt', 1, {'watt':1, 'ampere':-1}),
Unit('F', 'farad', 1, {'coulomb':1, 'volt':-1}),
Unit(None, 'ohm', 1, {'volt':1, 'ampere':-1}),
Unit('S', 'siemens', 1, {'ampere':1, 'volt':-1}),
Unit('Wb', 'weber', 1, {'volt':1, 'second':1}),
Unit('T', 'tesla', 1, {'weber':1, 'meter':-2}),
Unit('H', 'henry', 1, {'weber':1, 'ampere':-1}),
Unit('L', 'liter', 0.001, {'meter':3}),
Unit('t', 'tonne', 1000000, {'gram':1}),
Unit('min', 'minute', 60, {'second':1}),
Unit('h', 'hour', 3600, {'second':1}),
Unit(None, 'day', 24, {'hour':1}),
Unit(None, 'month', 1.0/12.0, {'year':1}),
Unit(None, 'year', 365.242199, {'day':1}),
Unit('Hz', 'hertz', 1, {'second':-1}),
Unit(None, 'angstrom', 0.1, {'nano':1, 'meter':1}),
Unit('in', 'inch', 0.0254, {'meter':1}),
Unit('ft', 'foot', 0.3048, {'meter':1}),
Unit('yd', 'yard', 3, {'foot':1}),
Unit(None, 'fathom', 6, {'foot':1}),
Unit('rd', 'rod', 16.5, {'foot':1}),
Unit('fur', 'furlong', 40, {'rod':1}),
Unit(None, 'mile', 5280, {'foot':1}),
Unit('nmile', 'nautical mile', 1852, {'meter':1}),
Unit(None, 'acre', 43560, {'foot':2}),
Unit(None, 'section', 1, {'mile':2}),
Unit(None, 'township', 6, {'mile':2}),
Unit('lb', 'pound', 0.45359237, {'kilo':1, 'gram':1}),
Unit(None, 'stone', 14, {'pound':1}),
Unit(None, 'ton', 2000, {'pound':1}),
Unit('lbf', 'pound force', 4.44822162, {'newton':1}),
Unit('floz', 'fluid ounce', 1.80468751, {'inch':3}),
Unit('gi', 'gill', 4, {'fluid ounce':1}),
Unit(None, 'cup', 8, {'fluid ounce':1}),
Unit('tbsp', 'tablespoon', 1.0/16.0, {'cup':1}),
Unit('tsp', 'teaspoon', 1.0/3.0, {'tablespoon':1}),
Unit('pt', 'pint', 28.875, {'inch':3}),
Unit('qt', 'quart', 57.75, {'inch':3}),
Unit('gal', 'gallon', 231.00000127999999, {'inch':3}),
Unit('kt', 'knot', 1, {'nautical mile':1, 'hour':-1}),
Unit('cal', 'calorie', 4.184, {'joule':1}),
Unit('BTU', 'british thermal unit', 1055.05585, {'joule':1}),
Unit('b', 'bit', 0.125, {'byte':1}),
Unit('bps', 'bit per second', 1, {'bit':1, 'second':-1}),
Unit('Bps', 'byte per second', 1, {'byte':1, 'second':-1}),
Unit('mbps', 'megabit per second', 1000000, {'bit':1, 'second':-1}),
Unit('mBps', 'megabyte per second', 1000000, {'byte':1, 'second':-1}),
Unit('MPH', 'mile per hour', 1, {'mile':1, 'hour':-1}),
Unit('mph', 'mile per hour', 1, {'mile':1, 'hour':-1}),
Unit('fpm', 'foot per minute', 1, {'foot':1, 'minute':-1}),
Unit(None, 'feet', 1, {'foot':1}),
Unit(None, 'feet per minute', 1, {'foot per minute':1}),
Unit(None, 'inches', 1, {'inch':1}),
Unit(None, 'kts', 1, {'knot':1}),
Unit(None, 'hamburger', 15000, {'g':1, 'day':1}),
]
constants = [
Unit(None, 'speed of light', 299792458, {'meter':1, 'second':-1}),
Unit('au', 'astronomical unit', 149598000000, {'meter':1}),
Unit('G', 'gravitational constant', 6.67428e-11, {'meter':3, 'kilo':-1, 'gram':-1, 'second':-2}),
Unit(None, 'mass of mercury', 3.3022e23, {'kilo':1, 'gram':1}),
Unit(None, 'radius of mercury', 2439.7, {'kilo':1, 'meter':1}),
Unit(None, 'distance from mercury to sun', 57909068, {'kilo':1, 'meter':1}),
Unit(None, 'mass of venus', 4.8685e24, {'kilo':1, 'gram':1}),
Unit(None, 'radius of venus', 6051.9, {'kilo':1, 'meter':1}),
Unit(None, 'distance from venus to sun', 108208930, {'kilo':1, 'meter':1}),
Unit(None, 'mass of earth', 5.9736e24, {'kilo':1, 'gram':1}),
Unit(None, 'radius of earth', 6378.137, {'kilo':1, 'meter':1}),
Unit(None, 'distance from earth to sun', 149597887.5, {'kilo':1, 'meter':1}),
Unit(None, 'mass of mars', 64185e23, {'kilo':1, 'gram':1}),
Unit(None, 'radius of mars', 3402.5, {'kilo':1, 'meter':1}),
Unit(None, 'distance from mars to sun', 227936637, {'kilo':1, 'meter':1}),
Unit(None, 'mass of jupiter', 1.8986e27, {'kilo':1, 'gram':1}),
Unit(None, 'radius of jupiter', 71492, {'kilo':1, 'meter':1}),
Unit(None, 'distance from jupiter to sun', 778547199, {'kilo':1, 'meter':1}),
Unit(None, 'mass of saturn', 568.46e24, {'kilo':1, 'gram':1}),
Unit(None, 'radius of saturn', 60268, {'kilo':1, 'meter':1}),
Unit(None, 'distance from saturn to sun', 1433449370, {'kilo':1, 'meter':1}),
Unit(None, 'mass of uranus', 8.6810e25, {'kilo':1, 'gram':1}),
Unit(None, 'radius of uranus', 25559, {'kilo':1, 'meter':1}),
Unit(None, 'distance from uranus to sun', 2876679082, {'kilo':1, 'meter':1}),
Unit(None, 'mass of neptune', 1.0243e26, {'kilo':1, 'gram':1}),
Unit(None, 'radius of neptune', 24764, {'kilo':1, 'meter':1}),
Unit(None, 'distance from neptune to sun', 4498252900, {'kilo':1, 'meter':1}),
Unit(None, 'mass of pluto', 1.305e22, {'kilo':1, 'gram':1}),
Unit(None, 'radius of pluto', 1195, {'kilo':1, 'meter':1}),
Unit(None, 'distance from pluto to sun', 5906376272, {'kilo':1, 'meter':1}),
Unit('gee', 'gravitational acceleration at surface of earth', 9.81703617506, {'meter':1, 'second':-2}),
Unit('e', 'euler number', 2.71828183),
Unit(None, 'pi', 3.1415926535897932384626),
Unit('ramius', 'RamiusJMoose', 532.7, {'pound':1}),
]
prefixes = [
Unit('T', 'tera', 1000000000000),
Unit('G', 'giga', 1000000000),
Unit('M', 'mega', 1000000),
Unit('k', 'kilo', 1000),
Unit('h', 'hecto', 100),
Unit('da', 'deka', 10),
Unit('d', 'deci', 0.1),
Unit('c', 'centi', 0.01),
Unit('m', 'milli', 0.001),
Unit('u', 'micro', 0.000001),
Unit('n', 'nano', 0.000000001),
]
def buildUnitDict(list):
dict = {}
# set plurals first so that a unit name which ends in s will take precedence
for u in list:
dict[u.longname + 's'] = u
for u in list:
dict[u.shortname] = u
dict[u.longname] = u
return dict
units = buildUnitDict(baseUnits + derivedUnits)
for c in constants: c.setShouldDeriveImmediately()
constants = buildUnitDict(constants)
for p in prefixes: p.setIsPrefix()
prefixes = buildUnitDict(prefixes)