-
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.
- Loading branch information
M@ Dunlap
committed
May 11, 2019
1 parent
ff50eab
commit 749f7f3
Showing
2 changed files
with
48 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,47 @@ | ||
//! Angular Acceleration (base unit radian per second squared, s⁻²). | ||
quantity! { | ||
/// Angular Acceleration (base unit radian per second squared, s⁻²). | ||
quantity: AngularAcceleration; "angular acceleration"; | ||
/// Dimension of angular acceleration, T⁻² (base unit radian per second squared, s⁻²). | ||
dimension: ISQ< | ||
Z0, // length | ||
Z0, // mass | ||
N2, // time | ||
Z0, // electric current | ||
Z0, // thermodynamic temperature | ||
Z0, // amount of substance | ||
Z0>; // luminous intensity | ||
kind: ::si::marker::AngleKind; | ||
units { | ||
/// Derived unit of angular acceleration. | ||
@radian_per_second_squared: 1.0; "rad/s²", "radian per second squared", | ||
"radians per second squared"; | ||
@degree_per_second_squared: 1.745_329_251_994_329_5_E-2; "°/s²", | ||
"degree per second squared", "degrees per second squared"; | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
storage_types! { | ||
use num::One; | ||
use si::angle as a; | ||
use si::angular_acceleration as aa; | ||
use si::quantities::*; | ||
use si::time as t; | ||
use tests::Test; | ||
|
||
#[test] | ||
fn check_units() { | ||
test::<a::radian, t::second, aa::radian_per_second_squared>(); | ||
test::<a::degree, t::second, aa::degree_per_second_squared>(); | ||
|
||
fn test<A: a::Conversion<V>, T: t::Conversion<V>, R: aa::Conversion<V>>() { | ||
let square_second = Time::new::<T>(V::one()) * Time::new::<T>(V::one()); | ||
Test::assert_approx_eq(&AngularAcceleration::new::<R>(V::one()), | ||
&(Angle::new::<A>(V::one()) / square_second).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