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

Online Help

All Products    Maple    MapleSim


type/with_unit

check for a Maple unit

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

type(expr, with_unit(typ, coeff, unit))

Parameters

expr

-

expression

typ

-

(optional) Maple type

coeff, unit

-

(optional) names

Description

• 

A Maple expression expr is of type with_unit if:

– 

expr is the function Units[Unit] applied to some arguments;

– 

expr is a rational power of such a function call;

– 

expr is a product of such function calls, potentially raised to rational powers, potentially also with another Maple expression;

– 

a call to the function Units[Unit] is present anywhere in expr (in the sense of the command has) and combine(expr, units) is of one of the three earlier forms described above.

• 

The function call type(expr, with_unit) returns true if expr is of type with_unit. Otherwise, false is returned.

• 

In the remainder of this help page, we will refer to the product of the powers of the Units[Unit] function as the unit of the expression, and the product of the remaining factors (if any) as the multiplier. If there are no other factors, the multiplier is 1. If expr is not of one of the first three forms above and calling combine(expr, units) is necessary to get it in that form, then the unit and multiplier of expr are those of combine(expr, units).

• 

If an optional type typ is given and expr is of the form described above, it additionally checks that the multiplier is of the type typ. The function returns true if this additional condition is satisfied. Otherwise, false is returned.

• 

If optional arguments coeff and unit are given and type(expr, with_unit(typ)) returns true, then the unit of expr is assigned to unit and the multiplier is assigned to coeff.

Examples

Notes: 

– 

To enter a unit in 2-D Math input, select the unit from the appropriate Units palette. If the unit you want is not there, select unit and then enter the unit.

– 

When you edit a unit, double brackets appear around it.

withUnitsStandard:

3Unitm

3m

(1)

type3Unitm,with_unit

true

(2)

type3Unitm,with_unitinteger

true

(3)

type3x2Unitm,with_unitinteger,a,b

false

(4)

a,b

a,b

(5)

type3x2Unitm,with_unitanything,a,b

true

(6)

a,b

3x2,m

(7)

type2Unitm,with_unitinteger,a,b

true

(8)

a,b

2,m

(9)

withUnitsNatural:

3m

3m

(10)

type3m,with_unit

true

(11)

type3m,with_unitinteger

true

(12)

type3x2m,with_unitinteger,a,b

false

(13)

a,b

2,m

(14)

type3x2m,with_unitanything,a,b

true

(15)

a,b

3x2,m

(16)

type2m,with_unitinteger,a,b

true

(17)

a,b

2,m

(18)

In the following cases, expr is detected as being of type with_unit only after the call combine(expr, units).

restart

exprxUnitm+yUnitft

exprxm+yft

(19)

typeexpr,with_unitanything,a,b

true

(20)

a,b

x+381y1250,m

(21)

In this case, the call combine(expr, units) combines the units for expr by converting to the SI system of units. Because this is a necessary step in determining the unit and multiplier for this expression, the unit and multiplier found by with_unit are in the SI system.

expr5Unitft+xUnitft

expr5ft+xft

(22)

combineexpr,units

381250+381x1250m

(23)

typeexpr,with_unitanything,a,b

true

(24)

a,b

381250+381x1250,m

(25)

See Also

type

Units

Units/Index

Units/Natural

Units/Standard

verify/structured