connorferster / forallpeople

Python SI units library: your 'daily driver' for calculations.
Apache License 2.0
272 stars 38 forks source link

use of hour and seconds #79

Open MDL28400 opened 1 year ago

MDL28400 commented 1 year ago

Hello,

si.hour seems to act like si.s when other units are involved. For example : si.m / si.hour = 1.000 m·s⁻¹

on the other hand, we have : si.hour/ si.s = 3600, which is normal.

thanks for reading this message

MDL28400 commented 1 year ago

image

porrt23 commented 1 year ago

image

It seems like the behind the scenes math is functioning properly as the Physical value is correct for 1 mile/hour to 1 m/s conversion (I added my own mph unit here). However, it still shows the mph value when it converts to m/s? At least that's what I gather. It seems to be something is catching an just spitting out "1 m * s **-1" despite having correct information.