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
impl Conductivity
Sourcepub fn s_per_m(v: f64) -> Conductivity
pub fn s_per_m(v: f64) -> Conductivity
Siemens per metre.
Sourcepub fn resistivity(self) -> Resistivity
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
impl Mul<Qty<1, 1, -3, -1, 0, 0, 0>> for Conductivity
Source§fn mul(self, rhs: ElectricField) -> CurrentDensity
fn mul(self, rhs: ElectricField) -> CurrentDensity
Performs the
* operation. Read more