You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that converting some compound units from SI/US produces wrong results.
Here is an example with mass per area:
var qty = new Qty(657.5, 'kg/m^2');
qty.to('lb/sqft');
This results in 1449.54lbs/sqft.
The correct result would be 134.6lbs/sqft.
Other examples include a unit of enthalpy 'kJ/m^2' converted to 'BTU/sqft'.
I assume this is due to wrong grouping: is there another way I can write the units so it will work?
The text was updated successfully, but these errors were encountered:
I noticed that converting some compound units from SI/US produces wrong results.
Here is an example with mass per area:
var qty = new Qty(657.5, 'kg/m^2');
qty.to('lb/sqft');
This results in 1449.54lbs/sqft.
The correct result would be 134.6lbs/sqft.
Other examples include a unit of enthalpy 'kJ/m^2' converted to 'BTU/sqft'.
I assume this is due to wrong grouping: is there another way I can write the units so it will work?
The text was updated successfully, but these errors were encountered: