div

open operator fun div(divisor: Double): ImmutableMeasure<U>

Divides this measurement by some constant divisor and returns the result. This is equivalent to times(1 / divisor)

Return

the resulting measure

Parameters

divisor

the constant to divide by

See also

.times


open operator fun <U2 : Unit<U2>> div(other: Measure<U2>): Measure<*>

Divides this measurement by another measure and performs some dimensional analysis to reduce the units.

Return

the resulting measure

Parameters

U2

the type of the other measure to multiply by

other

the unit to multiply by


open operator fun div(period: Measure<Time>): ImmutableMeasure<Velocity<U>>

Creates a velocity measure by dividing this one by a time period measure.

(Meters of 1.0) / (Seconds of 1.0) // Measure<Velocity<Distance>>

Return

the velocity result

Parameters

period

the time period to divide by.


open operator fun <U2 : Unit<U2>> div(denominator: U2): Measure<Per<U, U2>>

Creates a relational measure equivalent to this one per some other unit.

(Volts of 1.05) / Meter // V/m, potential PID constant

Return

the relational measure

Parameters

U2

the type of the denominator unit

denominator

the denominator unit being divided by


open operator fun div(time: Time): Measure<Velocity<U>>

Creates a velocity measure equivalent to this one per a unit of time.

(Radians of 3.14) / Second // Velocity<Angle> equivalent to RadiansPerSecond.of(3.14)

Return

the velocity measure

Parameters

time

the unit of time