ianmackenzie / elm-units / Inductance

A Inductance value represents an electrical inductance in henries.


type alias Inductance =
Quantity Basics.Float Henries


type Henries
    = Rate Voltage.Volts (Quantity.Rate Current.Amperes Duration.Seconds)

Conversions

henries : Basics.Float -> Inductance

Construct an inductance from a number of henries.

inHenries : Inductance -> Basics.Float

Convert an inductance to a number of henries.

nanohenries : Basics.Float -> Inductance

Construct an inductance from a number of nanohenries.

inNanohenries : Inductance -> Basics.Float

Convert an inductance to a number of nanohenries.

microhenries : Basics.Float -> Inductance

Construct an inductance from a number of microhenries.

inMicrohenries : Inductance -> Basics.Float

Convert an inductance to a number of microhenries.

millihenries : Basics.Float -> Inductance

Construct an inductance from a number of millihenries.

inMillihenries : Inductance -> Basics.Float

Convert an inductance to a number of millihenries.

kilohenries : Basics.Float -> Inductance

Construct an inductance from a number of kilohenries.

inKilohenries : Inductance -> Basics.Float

Convert an inductance to a number of kilohenries.