-
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.
Merge pull request #175 from jhelovuo/master
Add Curvature.
- Loading branch information
Showing
2 changed files
with
58 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,57 @@ | ||
//! [Curvature](https://en.wikipedia.org/wiki/Curvature) (base unit radian per meter, m⁻¹). | ||
quantity! { | ||
/// Curvature (base unit radian per meter, m⁻¹). | ||
quantity: Curvature; "curvature"; | ||
/// Dimension of curvature, L⁻¹ (base unit radian per meter, m⁻¹). | ||
dimension: ISQ< | ||
N1, // length | ||
Z0, // mass | ||
Z0, // time | ||
Z0, // electric current | ||
Z0, // thermodynamic temperature | ||
Z0, // amount of substance | ||
Z0>; // luminous intensity | ||
kind: dyn (::si::marker::AngleKind); | ||
units { | ||
@radian_per_meter: 1.0_E0; "rad/m", "radian per meter", "radians per meter"; | ||
@degree_per_meter: 1.745_329_251_994_329_5_E-2; "°/m", "degree per meter", | ||
"degrees per meter"; | ||
|
||
@radian_per_millimeter: 1000.0; "rad/mm", "radian per millimeter", "radians per millimeter"; | ||
@degree_per_millimeter: 1.745_329_251_994_329_5_E1; "°/mm", "degree per millimeter", | ||
"degrees per millimeter"; | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
storage_types! { | ||
use num::One; | ||
use si::quantities::*; | ||
use si::curvature as c; | ||
use si::length as l; | ||
use si::angle as a; | ||
use tests::Test; | ||
|
||
#[test] | ||
fn check_dimension() { | ||
let _: Curvature<V> = | ||
(Angle::new::<a::radian>(V::one()) | ||
/ Length::new::<l::meter>(V::one())).into(); | ||
} | ||
|
||
#[test] | ||
fn check_units() { | ||
test::<a::radian, l::meter, c::radian_per_meter>(); | ||
test::<a::degree, l::meter, c::degree_per_meter>(); | ||
test::<a::radian, l::millimeter, c::radian_per_millimeter>(); | ||
test::<a::degree, l::millimeter, c::degree_per_millimeter>(); | ||
|
||
fn test<A: a::Conversion<V>, L: l::Conversion<V>, C: c::Conversion<V>>() { | ||
Test::assert_approx_eq(&Curvature::new::<C>(V::one()), | ||
&(Angle::new::<A>(V::one()) / Length::new::<L>(V::one())).into()); | ||
} | ||
} | ||
} | ||
} |
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