Skip to main content

Conductivity

Type Alias Conductivity 

Source
pub type Conductivity = Qty<-3, -1, 3, 2, 0, 0, 0>;
Expand description

S/m — the reciprocal of Resistivity, and what a finite-volume solve actually wants, because conductances in parallel add where resistances do not.

Aliased Type§

pub struct Conductivity(/* private fields */);

Implementations§

Source§

impl Conductivity

Source

pub fn s_per_m(v: f64) -> Conductivity

Siemens per metre.

Source

pub fn resistivity(self) -> Resistivity

The resistivity that is its reciprocal.

Trait Implementations§

Source§

impl Mul<Qty<1, 1, -3, -1, 0, 0, 0>> for Conductivity

Source§

type Output = Qty<-2, 0, 0, 1, 0, 0, 0>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: ElectricField) -> CurrentDensity

Performs the * operation. Read more