282 lines
18 KiB
HTML
282 lines
18 KiB
HTML
<html><head><title>Quantity</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Quantity</h1></div>
|
|
|
|
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><p>The Quantity is a combination of a floating point number and an Unit. It is used throughout all of FreeCAD to handle parameters and all other kind of input/output.
|
|
</p>
|
|
<div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
|
|
<ul>
|
|
<li class="toclevel-1 tocsection-1"><a href="#General"><span class="tocnumber">1</span> <span class="toctext">General</span></a>
|
|
<ul>
|
|
<li class="toclevel-2 tocsection-2"><a href="#Supported_units"><span class="tocnumber">1.1</span> <span class="toctext">Supported units</span></a></li>
|
|
</ul>
|
|
</li>
|
|
<li class="toclevel-1 tocsection-3"><a href="#Internal_representation"><span class="tocnumber">2</span> <span class="toctext">Internal representation</span></a></li>
|
|
<li class="toclevel-1 tocsection-4"><a href="#Units_calculator"><span class="tocnumber">3</span> <span class="toctext">Units calculator</span></a></li>
|
|
<li class="toclevel-1 tocsection-5"><a href="InputField.html"><span class="tocnumber">4</span> <span class="toctext">InputField</span></a></li>
|
|
<li class="toclevel-1 tocsection-6"><a href="#Python_scripting"><span class="tocnumber">5</span> <span class="toctext">Python scripting</span></a>
|
|
<ul>
|
|
<li class="toclevel-2 tocsection-7"><a href="#Unit"><span class="tocnumber">5.1</span> <span class="toctext">Unit</span></a></li>
|
|
<li class="toclevel-2 tocsection-8"><a href="#Quantity"><span class="tocnumber">5.2</span> <span class="toctext">Quantity</span></a></li>
|
|
<li class="toclevel-2 tocsection-9"><a href="#User_facing_values"><span class="tocnumber">5.3</span> <span class="toctext">User facing values</span></a></li>
|
|
</ul>
|
|
</li>
|
|
<li class="toclevel-1 tocsection-10"><a href="#Appendix"><span class="tocnumber">6</span> <span class="toctext">Appendix</span></a>
|
|
<ul>
|
|
<li class="toclevel-2 tocsection-11"><a href="#Parser_supported_Units"><span class="tocnumber">6.1</span> <span class="toctext">Parser supported Units</span></a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<h2><span class="mw-headline" id="General">General</span></h2>
|
|
<p>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 <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/Mars_Climate_Orbiter#Cause_of_failure">crash of the Mars Climate Orbiter</a> through out a unit mix-up. 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 has to keep reliably track of units. Also it has to calculate with them and check on the right unit for special parameters.
|
|
</p><p>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.
|
|
</p>
|
|
<h3><span class="mw-headline" id="Supported_units">Supported units</span></h3>
|
|
<p>The FreeCAD input parser supports a bunch of units and units-systmes. We do use the Greek letter for micro but also accept 'u' as a replacement.
|
|
</p>
|
|
<ul><li> Length
|
|
<ul><li> "nm" </li>
|
|
<li> "µm" </li>
|
|
<li> "mm" </li>
|
|
<li> "cm" </li>
|
|
<li> "dm" </li>
|
|
<li> "m" </li>
|
|
<li> "km" </li>
|
|
<li> "in" </li>
|
|
<li> "ft" </li>
|
|
<li> "thou"</li>
|
|
<li> "mil" </li>
|
|
<li> "yd" </li>
|
|
<li> "mi" </li></ul></li></ul>
|
|
<p>Todo: all the rest...
|
|
</p><p><br />
|
|
The detailed specification you find in the code:
|
|
</p>
|
|
<ul><li> Quantity lexer: <a rel="nofollow" class="external free" href="http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/QuantityParser.l">http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/QuantityParser.l</a> </li>
|
|
<li> Quantity definitions: <a rel="nofollow" class="external free" href="http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/Quantity.cpp#l167">http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/Quantity.cpp#l167</a></li></ul>
|
|
<h2><span class="mw-headline" id="Internal_representation">Internal representation</span></h2>
|
|
<p>All physical units can be expressed as a combination of the seven <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/International_System_of_Units">SI-Units</a>:
|
|
</p><p><a href="https://www.freecadweb.org/wiki/index.php?title=File:SI-Derived-Units.jpg" class="image"><img alt="SI-Derived-Units.jpg" src="750px-SI-Derived-Units.jpg" width="750" height="592" srcset="/wiki/images/4/4b/SI-Derived-Units.jpg 1.5x" /></a>
|
|
</p><p><br />
|
|
An easy way to express a Unit is a integer array of size 7 (number of base units) that defines what the unit is.
|
|
The signature of the 7 base units are:
|
|
</p>
|
|
<ul><li> LENGTH: [1,0,0,0,0,0,0]</li>
|
|
<li> MASS: [0,1,0,0,0,0,0]</li>
|
|
<li> TIME: [0,0,1,0,0,0,0]</li>
|
|
<li> ELECTRIC CURRENT: [0,0,0,1,0,0,0]</li>
|
|
<li> THERMODYNAMIC TEMPERATURE: [0,0,0,0,1,0,0]</li>
|
|
<li> AMOUNT OF SUBSTANCE: [0,0,0,0,0,1,0]</li>
|
|
<li> LUMINOUS INTENSITY: [0,0,0,0,0,0,1]</li></ul>
|
|
<p>From these 7 units, we are then able to express all derived units defined in <a rel="nofollow" class="external text" href="http://physics.nist.gov/cuu/pdf/sp811.pdf">Guide for the Use of the International System of Units (SI)</a> and create new ones as needed such as for instance:
|
|
</p>
|
|
<ul><li> MASS DENSITY: [-3,1,0,0,0,0,0]</li>
|
|
<li> AREA: [0,2,0,0,0,0,0]</li></ul>
|
|
<p>Since angle is physically dimensionless, but never the less important to a CAD system we add one more virtual unit for Angle. This makes a vector of 8 in the FreeCAD unit signature.
|
|
</p>
|
|
<h2><span class="mw-headline" id="Units_calculator">Units calculator</span></h2>
|
|
<p>Often you are in need of calculating units from one system to another. For example you have old parameter tables with wired units. In that cases FreeCAD offers a conversion tool called Units-Calculator which helps in translating units.
|
|
</p><p>Its description in detail is here:
|
|
<a href="Std_UnitsCalculator.html" title="Std UnitsCalculator">Std_UnitsCalculator</a>
|
|
</p>
|
|
<h2><span class="mw-headline" id="InputField">InputField</span></h2>
|
|
<p>The InputField is a QLineEdit derived Qt widget to handle all kind of user interaction with Quantities and parameters. It features following properties:
|
|
</p>
|
|
<ul><li> parsing arbitrary value/unit input</li>
|
|
<li> checking on the right unit (if given) and give the user feedback</li>
|
|
<li> special context menu for operations on Quantities/Values</li>
|
|
<li> history management (save the last used values)</li>
|
|
<li> save often needed values as shortcut in context menu</li>
|
|
<li> dialing values with mouse wheel and arrow keys (tbd)</li>
|
|
<li> dialing with middle mouse button and mouse move (tbd)</li>
|
|
<li> python integration for usage in python only dialogs (tbd)</li></ul>
|
|
<p>The UnitsCalculator uses the InputField already.
|
|
</p><p>Main docu: <a href="InputField.html" title="InputField">InputField</a>
|
|
</p><p>Code:
|
|
</p>
|
|
<ul><li> <a rel="nofollow" class="external free" href="http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Gui/InputField.h">http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Gui/InputField.h</a></li>
|
|
<li> <a rel="nofollow" class="external free" href="http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Gui/InputField.cpp">http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Gui/InputField.cpp</a></li></ul>
|
|
<h2><span class="mw-headline" id="Python_scripting">Python scripting</span></h2>
|
|
<p>The Unit and Quantity system in FreeCAD is (as nearly everything) fully accessibly via Python.
|
|
</p>
|
|
<h3><span class="mw-headline" id="Unit">Unit</span></h3>
|
|
<p>The Unit class represents the Fingerprint of any physical unit. As descriped in the Basics section a vector of 8 numbers is used to represent this fingerprint. The Unit class allows the handling and calculation with this information.
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>from Units import Unit
|
|
|
|
# creating a Unit with certain signature
|
|
Unit(0,1) # Mass (kg)
|
|
Unit(1) # Length (mm)
|
|
Unit(-1,1,-2) # Pressure (kg/mm*s^2)
|
|
|
|
# using predefined constats
|
|
Unit(FreeCAD.Units.Length)
|
|
Unit(FreeCAD.Units.Mass)
|
|
Unit(FreeCAD.Units.Pressure)
|
|
|
|
# parsing unit out of an string
|
|
Unit('kg/(m*s^2)') # Pressure
|
|
Unit('Pa') # the same as combined Unit Pascale
|
|
Unit('J') # Joul (Work,Energy) mm^2*kg/(s^2)
|
|
|
|
# you can use units from all supported unit-systems
|
|
Unit('psi') # Imperial pressure
|
|
Unit('lb') # Mass
|
|
Unit('ft^2') # Area
|
|
|
|
# comparing units
|
|
Unit(0,1) == Unit(FreeCAD.Units.Mass)
|
|
|
|
# getting type of unit
|
|
Unit('kg/(m*s^2)').Type == 'Pressure'
|
|
|
|
# calculating
|
|
Unit('kg') * Unit('m^-1*s^-2') == Unit('kg/(m*s^2)')</pre></div>
|
|
<p>The Unit is mainly used to descripe a certain unit-type for a parameter. There fore a special Property Type in FreeCAD can transport a Unit to check and ensure the right Unit.
|
|
A Unit and a float value is called Quantity.
|
|
</p>
|
|
<h3><span class="mw-headline" id="Quantity">Quantity</span></h3>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>from Units import Unit,Quantity
|
|
|
|
# to create a quantity you need a value (float) and a Unit
|
|
Quantity(1.0,Unit(0,1)) # Mass 1.0 kg
|
|
Quantity(1.0,Unit(1)) # Length 1.0 mm
|
|
Quantity(1.0,Unit(-1,1,-2)) # Pressure 1.0 kg/mm*s^2
|
|
Quantity(1.0,FreeCAD.Units.Pressure) # Pressure 1.0 kg/mm*s^2
|
|
|
|
# you can directly give a signature
|
|
Quantity(1.0,0,1) # Mass 1.0 kg
|
|
Quantity(1.0,1) # Length 1.0 mm
|
|
Quantity(1.0,-1,1,-2) # Pressure 1.0 kg/mm*s^2
|
|
|
|
# parsing Quantitis out of a string
|
|
Quantity('1.0 kg/(m*s^2)') # Pressure
|
|
Quantity('1.0 Pa') # the same as combined Unit Pascale
|
|
Quantity('1.0 J') # Joul (Work,Energy) mm^2*kg/(s^2)
|
|
|
|
# You can using a point or comma as float delimiter
|
|
Quantity('1,0 m')
|
|
Quantity('1.0 m')
|
|
|
|
# you can use units from all supported unit-systems
|
|
Quantity('1.0 psi') # Imperial pressure
|
|
Quantity('1.0 lb') # Mass
|
|
Quantity('1.0 ft^2')
|
|
|
|
# the quantity parser can do calculations too
|
|
Quantity('360/5 deg') # splitting circle
|
|
Quantity('1/16 in') # fractions
|
|
Quantity('5.3*6.3 m^2') # calculating an area
|
|
Quantity('1/(log(2.3)/sin(pi)*3.4)+1.8e-3 m')
|
|
Quantity('1ft 3in') # imperial style
|
|
|
|
# and for sure calculation and comparison
|
|
Quantity('1 Pa')* Quantity(2.0) == Quantity('2 Pa')
|
|
Quantity('1 m')* Quantity('2 m') == Quantity('2 m^2')
|
|
Quantity('1 m')* Quantity('2 ft') + Quantity('2 mm^2')
|
|
Quantity('1 m') > Quantity('2 ft')
|
|
|
|
# accessing the components
|
|
Quantity('1 m').Value # get the number (allways internal system (mm/kg/s)
|
|
Quantity('1 m').Unit # get the unit
|
|
Quantity('1 m') == Quantity( Quantity('1 m').Value , Quantity('1 m').Unit )
|
|
|
|
# translating the value into other units then the internal system (mm/kg/s)
|
|
Quantity('1 km/h').getValueAs('m/s') # translate value
|
|
Quantity('1 m').getValueAs(2.45,1) # translation value and unit signature
|
|
Quantity('1 kPa').getValueAs(FreeCAD.Units.Pascal) # predefined standard units
|
|
Quantity('1 MPa').getValueAs(Quantity('N/m^2')) # a quantity</pre></div>
|
|
<h3><span class="mw-headline" id="User_facing_values">User facing values</span></h3>
|
|
<p>Normally in script you can use Quantity for all kind of calculation and checking, but there comes the time you have to output information to the user. You could use getValueAs() to force a certain unit, but normally the user sets his preferred unit-schema in the preferences. This unit-schema do all the translations to the representation the user likes to see. At the moment there are 3 schema implemented:
|
|
</p>
|
|
<ul><li> 1: Internal (mm/kg/s) </li>
|
|
<li> 2: MKS (m/kg/s)</li>
|
|
<li> 3: US customary (in/lb) </li></ul>
|
|
<p>There can be easily additional schemas implemented in the future...
|
|
</p><p>The quantity class has two possibilities to use the actual schema translation:
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>from Units import Unit,Quantity
|
|
|
|
# Use the translated string:
|
|
Quantity('1m').UserString # '1000 mm' in 1; '1 m' in 2; and '1.09361 yr' in 3</pre></div>
|
|
<p>This does the job if you only need a string. But somethimes you need more control, e.g. if you want to have a dialog button which dial up and down. Then you need more information about the translation output. There fore the getUserPreferred() method of quantity is used:
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>Quantity('22 m').getUserPreferred() # gets a tubple:('22 m', 1000.0, 'm')
|
|
Quantity('2 m').getUserPreferred() # Tuple: ('2000 mm', 1.0, 'mm')</pre></div>
|
|
<p>Here you get two more informations as a tuple of size 3. You get the string as before, plus the factor the number is translated and the raw string with only the unit chosen by the translation schema. With this information you can implement a much richer user interaction.
|
|
</p><p>The code for the schema translation you can see here:
|
|
</p>
|
|
<ul><li> <a rel="nofollow" class="external free" href="http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/UnitsSchemaInternal.cpp">http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/UnitsSchemaInternal.cpp</a></li>
|
|
<li> <a rel="nofollow" class="external free" href="http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/UnitsSchemaMKS.cpp">http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/UnitsSchemaMKS.cpp</a></li>
|
|
<li> <a rel="nofollow" class="external free" href="http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/UnitsSchemaImperial1.cpp">http://sourceforge.net/p/free-cad/code/ci/master/tree/src/Base/UnitsSchemaImperial1.cpp</a></li></ul>
|
|
<h2><span class="mw-headline" id="Appendix">Appendix</span></h2>
|
|
<h3><span class="mw-headline" id="Parser_supported_Units">Parser supported Units</span></h3>
|
|
<p>Although all physical units can be described with the seven SI units, most of the units used in technical areas are common combined units (like Pa = N/m^2 Pascal ). There fore the units parser in FreeCAD support lot of SI and Imperial combined units. This units are defined in src/Base/QuantityParser.l file and can be further advanced in the future.
|
|
</p><p><br />
|
|
</p>
|
|
<pre>"nm" = Quantity(1.0e-6 ,Unit(1)); // nano meter
|
|
"µm" = Quantity(1.0e-3 ,Unit(1)); // micro meter
|
|
"mm" = Quantity(1.0 ,Unit(1)); // milli meter
|
|
"cm" = Quantity(10.0 ,Unit(1)); // centi meter
|
|
"dm" = Quantity(100.0 ,Unit(1)); // deci meter
|
|
"m" = Quantity(1.0e3 ,Unit(1)); // meter
|
|
"km" = Quantity(1.0e6 ,Unit(1)); // kilo meter
|
|
"l" = Quantity(1000000.0 ,Unit(3)); // Liter dm^3
|
|
|
|
"µg" = Quantity(1.0e-9 ,Unit(0,1)); // micro gram
|
|
"mg" = Quantity(1.0e-6 ,Unit(0,1)); // milli gram
|
|
"g" = Quantity(1.0e-3 ,Unit(0,1)); // gram
|
|
"kg" = Quantity(1.0 ,Unit(0,1)); // kilo gram
|
|
"t" = Quantity(1000.0 ,Unit(0,1)); // ton
|
|
|
|
"s" = Quantity(1.0 ,Unit(0,0,1)); // second (internal standard time)
|
|
"min" = Quantity(60.0 ,Unit(0,0,1)); // minute
|
|
"h" = Quantity(3600.0 ,Unit(0,0,1)); // hour
|
|
|
|
"A" = Quantity(1.0 ,Unit(0,0,0,1)); // Ampere (internal standard electric current)
|
|
"mA" = Quantity(0.001 ,Unit(0,0,0,1)); // milli Ampere
|
|
"kA" = Quantity(1000.0 ,Unit(0,0,0,1)); // kilo Ampere
|
|
"MA" = Quantity(1.0e6 ,Unit(0,0,0,1)); // Mega Ampere
|
|
|
|
"K" = Quantity(1.0 ,Unit(0,0,0,0,1)); // Kelvin (internal standard thermodynamic temperature)
|
|
"mK" = Quantity(0.001 ,Unit(0,0,0,0,1)); // Kelvin
|
|
"µK" = Quantity(0.000001 ,Unit(0,0,0,0,1)); // Kelvin
|
|
</pre>
|
|
<pre>"mol" = Quantity(1.0 ,Unit(0,0,0,0,0,1)); // Mole (internal standard amount of substance)
|
|
</pre>
|
|
<pre>"cd" = Quantity(1.0 ,Unit(0,0,0,0,0,0,1)); // Candela (internal standard luminous intensity)
|
|
</pre>
|
|
<pre>"deg" = Quantity(1.0 ,Unit(0,0,0,0,0,0,0,1)); // degree (internal standard angle)
|
|
"rad" = Quantity(180/M_PI ,Unit(0,0,0,0,0,0,0,1)); // radian
|
|
"gon" = Quantity(360.0/400.0 ,Unit(0,0,0,0,0,0,0,1)); // gon
|
|
</pre>
|
|
<pre>"in" = Quantity(25.4 ,Unit(1)); // inch
|
|
"\"" = Quantity(25.4 ,Unit(1)); // inch
|
|
"fo" = Quantity(304.8 ,Unit(1)); // foot
|
|
"'" = Quantity(304.8 ,Unit(1)); // foot
|
|
"th" = Quantity(0.0254 ,Unit(1)); // thou
|
|
"yd" = Quantity(914.4 ,Unit(1)); // yard
|
|
</pre>
|
|
<p><br />
|
|
</p>
|
|
<pre>"lb" = Quantity(0.45359237 ,Unit(0,1)); // pound
|
|
"oz" = Quantity(0.0283495231 ,Unit(0,1)); // ounce
|
|
"st" = Quantity(6.35029318 ,Unit(0,1)); // Stone
|
|
"cwt" = Quantity(50.80234544 ,Unit(0,1)); // hundredweights
|
|
</pre>
|
|
<div style="clear:both"></div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div><div class="printfooter">
|
|
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Quantity&oldid=241767">http://www.freecadweb.org/wiki/index.php?title=Quantity&oldid=241767</a>"</div>
|
|
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
|
|
</div>
|
|
</div>
|
|
<div id="mw-navigation">
|
|
<h2>Navigation menu</h2>
|
|
|
|
</body></html> |