Hi,
I am using Mathematica 11.3 on Linux, and I've found what appears to be a bug regarding units. I'm trying to enter some aircraft maximum roll rates in units of degrees per second. An example which results in an error: x = Quantity[150.0, "Degrees"/"Seconds"]
This seems to be related to a bug in handling this version having Wolfram Alpha access end in October 2023 (it isn't that date yet, but even if it were, when I specify units I can't get some units to work).
The result of entering that is "Quantity: Unable to interpret unit specification Degrees/Seconds."
Even so, I can easily use something like this: y = Quantity[150.0,"Meters"/"Seconds"]
I tried separating this into: x = Quantity[150.0, "Degrees"] / Quantity[1.0/"Seconds"]
The above also fails with the same error. If I multiply the variable by 2, nothing happens, and so I have to conclude this is not a warning, but an actual error. Is Wolfram Alpha required to use units? If so, and if Alpha access continues until October, why is it not possible to specify Degrees/Seconds, whereas I can specify Meters/Seconds? Is there a workaround? Is Quantity a purely Wolfram Alpha thing?