-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Electrical Mobility quantity and related units.
- Loading branch information
1 parent
d55d64a
commit a5eef15
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
//! Electrical mobility (base unit square meter per volt second, kg⁻¹ ·s² · A). | ||
quantity! { | ||
/// Electrical mobility (base unit square meter per volt second, kg⁻¹ ·s² · A). | ||
quantity: ElectricalMobility; "electrical mobility"; | ||
/// Dimension of electrical mobility, M⁻¹T²I⁻¹ (base unit square meter per volt second, kg⁻¹ ·s² · A). | ||
dimension: ISQ< | ||
Z0, // length | ||
N1, // mass | ||
P2, // time | ||
P1, // electric current | ||
Z0, // thermodynamic temperature | ||
Z0, // amount of substance | ||
Z0>; // luminous intensity | ||
units { | ||
@square_meter_per_volt_second: prefix!(none); "m²/(V·s)", | ||
"square meter per volt second", "square meter per volt seconds"; | ||
@square_centimeter_per_volt_second: prefix!(centi) * prefix!(centi); "cm²/(V·s)", | ||
"square centimeter per volt second", "square centimeter per volt seconds"; | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod test { | ||
storage_types! { | ||
use crate::num::One; | ||
use crate::si::electrical_mobility as em; | ||
use crate::si::electric_potential as ep; | ||
use crate::si::time as t; | ||
use crate::si::length as l; | ||
use crate::si::quantities::*; | ||
use crate::tests::Test; | ||
|
||
#[test] | ||
fn check_dimension() { | ||
let _: ElectricalMobility<V> = Length::new::<l::meter>(V::one()) | ||
* Length::new::<l::meter>(V::one()) | ||
/ Time::new::<t::second>(V::one()) | ||
/ ElectricPotential::new::<ep::volt>(V::one()); | ||
} | ||
|
||
#[test] | ||
fn check_units() { | ||
test::<l::meter, ep::volt, t::second, em::square_meter_per_volt_second>(); | ||
test::<l::centimeter, ep::volt, t::second,em::square_centimeter_per_volt_second>(); | ||
|
||
fn test<L: l::Conversion<V>, EP: ep::Conversion<V>, T: t::Conversion<V>, EM: em::Conversion<V>>() { | ||
Test::assert_approx_eq(&ElectricalMobility::new::<EM>(V::one()), | ||
&(Length::new::<L>(V::one()) | ||
* Length::new::<L>(V::one()) | ||
/ ElectricPotential::new::<EP>(V::one()) | ||
/ Time::new::<T>(V::one()))); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters