-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Newtonmeters are displayed in the wrong order #708
Comments
Currently, units and dimensions are ordered alphabetically (by their full name, i.e., However, I am not familiar with the conventions you mentioned (MLT, FLT). Does MLT mean that the dimensions are printed in this order? Currently they are not ( julia> dimension(u"N*m")
𝐋^2 𝐌 𝐓^-2 |
I don't know if there is a hard "law" for it. But in my experience the composed units are always presented in the MLT or FLT order: N = kg m s^-2 In any case the standard units for torque are all in the order [FL]: SI: Nm, US: lbf ft, lbf in, ... Interestingly, your alphabetic ordering works out nicely in most other cases :-) BTW: the situation is not made easier by naming common unit combinations in the LMT order, e.g., CGS or MKS (but those are all over the place with their capitalisation anyway). |
Just checked in Matlab, and it's correct there (let's not dwell on the many rendering issues that violate engineering standards in that screenshot for the moment: upright for variables, italic for units? Should be the other way round, and definitely not mixed as in N and kg. Omitting the quantity just because its 1? Very questionable. Unitful and Latexify are much better there!): In the case of Nm vs mN, the problem is also, that the space between the m and the N is too small to prevent my students to read it as milli-Newton :-) |
Unitful seems to follow the ordering of dimensions in the MLT system, but if forces are defined in Newton it does not follow the order of the FLT convention.
The unit
Nm
for moment is displayed asmN
The text was updated successfully, but these errors were encountered: