div

@JvmName(name = "perKt")
operator fun div(period: Time): Velocity<U>

Creates a velocity unit derived from this one. Can be chained to denote velocity, acceleration, jerk, etc.

Meters / Second // linear velocity
Kilograms / Second // mass flow
32 of (Feet / Second / Second) // roughly 1G of acceleration

Return

a velocity unit corresponding to the rate of change of this unit over time

Parameters

period

the time period of the velocity, such as seconds or milliseconds


@JvmName(name = "perKt")
operator fun <D : Unit<D>> div(denominator: D): Per<U, D>

Takes this unit and creates a new proportional unit where this unit is the numerator and the given denominator is the denominator.

Volts / Meter // V/m

Return

a combined proportional unit

Parameters

D

the type of the denominator units

denominator

the denominator of the proportional unit