blob: fc6a426dc9e6c15425f9925a375cb3b1b72476e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
LENGTH !
MASS !
TIME !
ENERGY MASS * LENGTH^2 / TIME^2
POWER ENERGY / TIME
# doesn't work, but would require major changes to fix properly
# for now, just don't use brackets in dimension expressions
# (note that the unit/prefix expressions use a complete hack
# to enable this, one that doesn't work for dimensions)
# POWER MASS * (LENGTH / TIME)^2 / TIME
|