We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
> w = 1 amp * 1 volt 1 watt > c = 1 kwh 1 kWh > (w * 1 hour) / c 1 amp volt hour / kWh > (w * 1 hour) / c to unitless 0.001
What is going on here? I expected to get 0.001 automatically, without needing to unitless, because they are both in the same quantity.
0.001
to unitless
The text was updated successfully, but these errors were encountered:
It looks like ampere is considered as a fundamental dimension in one but not the other.
> @debug (1 amp * 1 volt * 1 hour) 1 amp (amps, = 1 ampere) * volt (volts, = 1000/1000 ampere^-1 kilogram meter^2 second^-3) * hour (hours, = 3600 second) (base 10, auto, simplifiable) > @debug (1 amp * 1 volt * 1 hour) to Wh 3600000000/3600000000 Wh (= 3600000/1000 kilogram meter^2 second^-2) (base 10, auto, not simplifiable)
Sorry, something went wrong.
No branches or pull requests
What is going on here? I expected to get
0.001
automatically, without needingto unitless
, because they are both in the same quantity.The text was updated successfully, but these errors were encountered: