-
Notifications
You must be signed in to change notification settings - Fork 0
/
units.lua
203 lines (161 loc) · 3.62 KB
/
units.lua
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
local M = {}
M.mt = {}
M.mt.__index = M.mt
function M.unitEquality (unitsA, unitsB)
for unit, dimension in pairs (unitsA) do
if unitsB [unit] ~= dimension then
return false
end
end
for unit, dimension in pairs (unitsB) do
if unitsA [unit] ~= dimension then
return false
end
end
return true
end
function M.unitInverse (units)
local rtn = {}
for unit, dimension in pairs (units) do
rtn [unit] = -dimension
end
return rtn
end
function M.unitMultiply (unitsA, unitsB)
local rtn = {}
for unit, dimension in pairs (unitsA) do
local sum = unitsA [unit] + (unitsB [unit] or 0)
if sum ~= 0 then
rtn [unit] = sum
end
end
for unit, dimension in pairs (unitsB) do
local sum = unitsB [unit] + (unitsA [unit] or 0)
if sum ~= 0 then
rtn [unit] = sum
end
end
return rtn
end
function M.unitDivide (unitsA, unitsB)
return M.unitMultiply (unitsA, M.unitInverse (unitsB))
end
function M.mt.__add (a, b)
a = M.newValue (a)
b = M.newValue (b)
assert (M.unitEquality (a.units, b.units))
return setmetatable ({
value = a.value + b.value,
units = a.units,
}, M.mt)
end
function M.mt.__sub (a, b)
a = M.newValue (a)
b = M.newValue (b)
assert (M.unitEquality (a.units, b.units))
return setmetatable ({
value = a.value - b.value,
units = a.units,
}, M.mt)
end
function M.mt.__mul (a, b)
a = M.newValue (a)
b = M.newValue (b)
return setmetatable ({
value = a.value * b.value,
units = M.unitMultiply (a.units, b.units),
}, M.mt)
end
function M.mt.__pow (a, b)
a = M.newValue (a)
b = M.newValue (b)
assert (M.unitEquality ({}, b.units))
local newUnits = {}
for unit, dimension in pairs (a.units) do
local newDimension = dimension * b.value
assert (newDimension == math.floor (newDimension),
"Cannot have fractional dimensions")
newUnits [unit] = newDimension
end
return setmetatable ({
value = a.value ^ b.value,
units = newUnits,
}, M.mt)
end
function M.mt.__div (a, b)
a = M.newValue (a)
b = M.newValue (b)
return setmetatable ({
value = a.value / b.value,
units = M.unitDivide (a.units, b.units),
}, M.mt)
end
function M.mt.__mod (a, b)
a = M.newValue (a)
b = M.newValue (b)
return setmetatable ({
value = a.value % b.value,
units = M.unitDivide (a.units, b.units),
}, M.mt)
end
function M.mt.splitUnitsBySign (wrapped)
local allUnits = {}
for unit, dimension in pairs (wrapped.units) do
table.insert (allUnits, unit)
end
table.sort (allUnits, function (a, b)
return wrapped.units [a] > wrapped.units [b]
end)
local posUnits = {}
local negUnits = {}
for _, unit in ipairs (allUnits) do
local dimension = wrapped.units [unit]
if dimension > 0 then
for i = 1, dimension do
table.insert (posUnits, unit)
end
elseif dimension < 0 then
for i = 1, -dimension do
table.insert (negUnits, unit)
end
end
end
return posUnits, negUnits
end
function M.mt.__tostring (wrapped)
local posUnits, negUnits = wrapped:splitUnitsBySign ()
if #negUnits >= 1 then
return tostring (wrapped.value) .. " " ..
table.concat (posUnits, " * ") .. " / (" ..
table.concat (negUnits, " * ") .. ")"
else
return tostring (wrapped.value) .. " " ..
table.concat (posUnits, " * ")
end
end
function M.newValue (value)
if type (value) == "number" then
return setmetatable ({
value = value,
units = {},
}, M.mt)
else
return value
end
end
function M.newUnit (unit)
return setmetatable ({
value = 1.0,
units = {
[unit] = 1,
},
}, M.mt)
end
function M.makeUnitsTable (unitsToAdd)
local units = {}
for _, unit in ipairs (unitsToAdd) do
units [unit] = M.newUnit (unit)
end
return units
end
return M