Unit - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Units

  

Unit

  

return argument as a unit

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Unit(expr)

Unit(expr, opt)

Parameters

expr

-

algebraic expression

opt

-

(optional) equation of the form preserve = p, determine whether to preserve the input form of the unit, or to convert it to the default system.

Description

• 

The Unit(expr) function interprets the argument expr as a unit.

• 

By default, Maple will initially maintain the unit as you have input it. This behavior can be selected explicitly by supplying the preserve = true option. This can be shortened to just preserve.

  

In many situations, Maple combines units in an expression; for example, if you call the combine(..., units) command. Whenever this is the case, Maple will try to convert the unit to the unit system you selected with the UseSystem command (the default is the SI system). If there is no corresponding unit in the selected unit system, Maple will signal an error. You can select this behavior when entering a unit by supplying the preserve = false option.

  

If you supply the preserve = maybe option when entering a unit, Maple will try to convert the unit you input to your selected unit system. If there is no corresponding unit in the selected unit system, Maple will instead use the unit as entered.

• 

You can convert a unit to your default system after the fact by calling combine(..., units) or convert(..., system).

Examples

withUnits:

Automatically loading the Units[Simple] subpackage

`*`3,Unitkgms2

3kgms2

(1)

combine,units

3N

(2)

3Unitkgms2,preserve=false

3N

(3)

convert,units,lbfts2

1250000000005760623099lbfts2

(4)

convert,system,CGS

300000dyn

(5)

See Also

combine/units

convert/system

convert/units

Units

Units/Commands