Is there a way to force Mathematica to UnitSimplify to a different unit? For example, I would like kg m^2/s^2 to simplify to N m but it always simplifies to J. Is there a way to specify a units preference?
Asked
Active
Viewed 1,414 times
1 Answers
5
I would use UnitConvert:
UnitConvert[Quantity[1,
("Kilograms"*"Meters"^2)/
"Seconds"^2],
Quantity["Newton Meters"]]
Rolf Mertig
- 17,172
- 1
- 45
- 76
N m/Jare the trickiest as one would often want to use both in the same calculation. – Szabolcs Dec 03 '12 at 19:28