Quantity: Difference between revisions

From FreeCAD Documentation
(Created page with "The Quantity is a combination of a floating point number and an Unit. In a CAD or CAE system its very important to keep track on the unit of an value. Lot of trouble can ari...")
(No difference)

Revision as of 15:54, 8 November 2013

The Quantity is a combination of a floating point number and an Unit.

In a CAD or CAE system its very important to keep track on the unit of an value. Lot of trouble can arise when mixing up units or calculating results in different unit systems. One famous disaster is the crash of the Mars Climate Orbiter through out a unit mixup. Even in the same unit-system the units come in lots of different flavors always tailored to the field of use. Simple examples are e.g. velocity in km/h (cars), m/s (robotics) or mm/minute (milling). A CAD system have to keep reliably track of units. Also it has to calculate with them and check on the right unit for special parameters.

For that reason the FreeCAD Quantity framework was created. It includes all the code and objects to deal with units, unit calculations, user input, conversion in other unit systems and the pretty output of units and values. In the long run no parameter in FreeCAD should be just a number.

Basics