Giter Club home page Giter Club logo

Comments (5)

rage-shadowman avatar rage-shadowman commented on May 25, 2024

Doesn't the unit "ml" mean "milli-liter" (volume)? And "cm" mean "centi-meter" (length)?
Volume and length are not equivalent unit types. The "eq" function should throw an incompatible unit error.

Duh... Never-mind... "cm^3" (volume), not "cm" (length).

from js-quantities.

rage-shadowman avatar rage-shadowman commented on May 25, 2024

Ok, I see what you're doing here. The issue is just that things aren't simplified in the text representation, since the "g/cm^3" is not compatible with "ml". If you instead did:

var simplifiedVolume = v.to(sample_v);
var density = w.div(simplifiedVolume);
sample_w = sample_v.mul(density)

...it would simplify?

from js-quantities.

luzlab avatar luzlab commented on May 25, 2024

Thanks for that explanation. So we should just cast the units manually rather relying on automatic simplification... So are units (or prefixes) ever simplified automatically?

Do you think this would work?

// same setup as before...
var w = Qty('1 g');
var v = Qty('1 cm^3');
var density = w.div(v);
var sample_v = Qty('100 ml');
var sample_w = sample_v.mul(density);
sample_w.toString() // returns '100 ml*g/cm^3'

// would this work?
sample_w.toString('g') // expect to return '100 g'?

I'll try this next time I work with on this part of my project.

from js-quantities.

rage-shadowman avatar rage-shadowman commented on May 25, 2024

or maybe (if you already know you are looking at a result in units of "g"):

var result_in_g = sample_w.to("g");
result_in_g.toString();

,,,but yes, it looks like he added the option for target units in the toString function, so ignore my above.

from js-quantities.

luzlab avatar luzlab commented on May 25, 2024

So Qty does properly simplify/convert between 'ml' and 'cm^3'.

Qty('100 ml*g/cm^3').toString('g')  // returns 100g

from js-quantities.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.