Open n1k0 opened 3 weeks ago
Hello, thanks for the useful library. I'm having an issue with a mass expressed in grams or kilograms:
> import Mass > Mass.grams 18 |> Mass.inGrams 18.000000000000004 : Float > Mass.grams 18 == Mass.kilograms 0.018 False : Bool > Mass.grams 17 == Mass.kilograms 0.017 True : Bool
This is because the grams function uses kilograms (0.001 * numGrams) instead of kilograms (numGrams / 1000) which would solve the issue.
grams
kilograms (0.001 * numGrams)
kilograms (numGrams / 1000)
Am I understanding things wrong? Or would you like me to craft a PR?
Thank you
Hello, thanks for the useful library. I'm having an issue with a mass expressed in grams or kilograms:
This is because the
grams
function useskilograms (0.001 * numGrams)
instead ofkilograms (numGrams / 1000)
which would solve the issue.Am I understanding things wrong? Or would you like me to craft a PR?
Thank you