-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ElectricDisplacementField with related units.
- Loading branch information
1 parent
d4bdcd9
commit 2d6d500
Showing
2 changed files
with
52 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,51 @@ | ||
//! Electric displacement field (base unit coulomb per square meter, m⁻² · A · s). | ||
quantity! { | ||
///Electric displacement field (base unit coulomb per square meter, m⁻² · A · s). | ||
quantity: ElectricDisplacementField; "electric displacement field"; | ||
/// Dimension of electric displacement field, L⁻²TI (base unit coulomb per square meter, | ||
/// m⁻² · A · s). | ||
dimension: ISQ< | ||
N2, // length | ||
Z0, // mass | ||
P1, // time | ||
P1, // electric current | ||
Z0, // thermodynamic temperature | ||
Z0, // amount of substance | ||
Z0>; // luminous intensity | ||
units { | ||
@coulomb_per_square_meter: prefix!(none); "C/m²", "coulomb per square meter", | ||
"coulombs per square meter"; | ||
@coulomb_per_square_centimeter: prefix!(none) / prefix!(centi) / prefix!(centi); "C/cm²", | ||
"coulomb per square centimeter", "coulombs per square centimeter"; | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
storage_types! { | ||
use crate::num::One; | ||
use crate::si::electric_charge as q; | ||
use crate::si::electric_displacement_field as d; | ||
use crate::si::quantities::*; | ||
use crate::si::area as a; | ||
use crate::tests::Test; | ||
|
||
#[test] | ||
fn check_dimension() { | ||
let _: ElectricDisplacementField<V> = ElectricCharge::new::<q::coulomb>(V::one()) | ||
/ Area::new::<a::square_meter>(V::one()); | ||
} | ||
|
||
#[test] | ||
fn check_units() { | ||
test::<q::coulomb, a::square_meter, d::coulomb_per_square_meter>(); | ||
test::<q::coulomb, a::square_centimeter, d::coulomb_per_square_centimeter>(); | ||
|
||
fn test<Q: q::Conversion<V>, A: a::Conversion<V>, D: d::Conversion<V>>() { | ||
Test::assert_approx_eq(&ElectricDisplacementField::new::<D>(V::one()), | ||
&(ElectricCharge::new::<Q>(V::one()) / Area::new::<A>(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